1 Star 1 Fork 1

Tinkler / cloudshop

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
zk.go 391 Bytes
一键复制 编辑 原始数据 按行查看 历史
Tinkler Liang 提交于 2016-07-22 11:18 . supplier pay flow
package controllers
import (
"github.com/astaxie/beego"
)
//ZKPreparer define the infine the interface of zktimes router
type ZKPreparer interface {
ZKPrepare()
}
//ZKBase implements ControllerInterface
type ZKBase struct {
beego.Controller
}
//Prepare get ready to run interface
func (zk *ZKBase) Prepare() {
if app, ok := zk.AppController.(ZKPreparer); ok {
app.ZKPrepare()
}
}
Go
1
https://gitee.com/tinkler/cloudshop.git
git@gitee.com:tinkler/cloudshop.git
tinkler
cloudshop
cloudshop
5972c8c92a60

搜索帮助