20 lines
295 B
Go
20 lines
295 B
Go
/*
|
|
* @desc:
|
|
* @company:云南奇讯科技有限公司
|
|
* @Author: yixiaohu
|
|
* @Date: 2022/3/4 18:19
|
|
*/
|
|
|
|
package controller
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/net/ghttp"
|
|
)
|
|
|
|
type BaseController struct {
|
|
}
|
|
|
|
// Init 自动执行的初始化方法
|
|
func (c *BaseController) Init(r *ghttp.Request) {
|
|
}
|