1 Star 1 Fork 1

Tinkler/cloudshop

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
test.go 390 Bytes
一键复制 编辑 原始数据 按行查看 历史
Tinkler Liang 提交于 2016-07-22 11:18 . supplier pay flow
package controllers
import (
"github.com/astaxie/beego"
)
//TestPreparer define the interface of test router
type TestPreparer interface {
TestPrepare()
}
//TestBase implement ControllerInterface
type TestBase struct {
beego.Controller
}
//Prepare get ready to run interface
func (t *TestBase) Prepare() {
if app, ok := t.AppController.(TestPreparer); ok {
app.TestPrepare()
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/tinkler/cloudshop.git
git@gitee.com:tinkler/cloudshop.git
tinkler
cloudshop
cloudshop
5972c8c92a60

搜索帮助