You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/* |
|
* @desc:system base controller |
|
* |
|
* |
|
* @Date: 2022/3/4 18:12 |
|
*/ |
|
|
|
package controller |
|
|
|
import ( |
|
"github.com/gogf/gf/v2/net/ghttp" |
|
) |
|
|
|
type BaseController struct { |
|
} |
|
|
|
// Init 自动执行的初始化方法 |
|
func (c *BaseController) Init(r *ghttp.Request) { |
|
}
|
|
|