| 12345678910111213141516171819 |
- /*
- * @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) {
- }
|