Golang设计模式之外观模式 Jackey Golang 2020-12-30 2,221 次浏览 Golang, 外观模式, 设计模式 package main import "fmt" // 测试 type API interface { Test() string } type APICall struct { // 接口 a AmoudleAPI b BmoudleAPI } func (api *APICall) Test() string { return fmt.S...