1 Star 0 Fork 200

孙晓举/go-mall

forked from guchengwuyue/yshop-gin 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.go 738 Bytes
一键复制 编辑 原始数据 按行查看 历史
package main
import (
beego "github.com/beego/beego/v2/server/web"
_ "github.com/go-sql-driver/mysql"
"log"
"yixiang.co/yshop/filters/operation"
"yixiang.co/yshop/filters/permission"
_ "yixiang.co/yshop/initialize"
_ "yixiang.co/yshop/routers"
)
func main() {
log.Print("==========yshop管理后台 start=============")
//if beego.BConfig.RunMode == "dev" {
beego.BConfig.WebConfig.DirectoryIndex = true
beego.BConfig.WebConfig.StaticDir["/swagger"] = "swagger"
//}
//
//人员操作日志filter
operation := &operation.FilterChainBuilder{}
beego.InsertFilterChain("/*", operation.AccessLog)
//权限filter
fb := &permission.FilterChainBuilder{}
beego.InsertFilterChain("/*", fb.Permssion)
beego.Run()
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/sunxj888/go-mall.git
git@gitee.com:sunxj888/go-mall.git
sunxj888
go-mall
go-mall
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385