Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( Main = gcmd.Command{ Name: "main", Usage: "main", Brief: "start http server", Func: func(ctx context.Context, parser *gcmd.Parser) (err error) { var ( s = g.Server() oai = s.GetOpenApi() ) { oai.Info.Title = `API Reference` oai.Config.CommonResponse = api_v1.JsonRes{} oai.Config.CommonResponseDataField = `Data` } { uploadPath := g.Cfg().MustGet(ctx, "upload.path").String() if uploadPath == "" { g.Log().Fatal(ctx, "文件上传配置路径不能为空!") } if !gfile.Exists(uploadPath) { _ = gfile.Mkdir(uploadPath) } s.AddStaticPath("/upload", uploadPath) } { if gmode.IsDevelop() { s.BindHookHandler("/*", ghttp.HookBeforeServe, func(r *ghttp.Request) { r.Response.Header().Set("Cache-Control", "no-store") }) } } { sys_service.SysPermission().ImportPermissionTree(ctx, consts.Global.PermissionTree, nil) sys_service.SysPermission().ImportPermissionTree(ctx, consts.Global.FinancialPermissionTree, nil) sys_service.Casbin().Enforcer() } apiPrefix := g.Cfg().MustGet(ctx, "service.apiPrefix").String() s.Group(apiPrefix, func(group *ghttp.RouterGroup) { group.Middleware( sys_service.Middleware().CTX, sys_service.Middleware().ResponseHandler, ) group.Group("/", func(group *ghttp.RouterGroup) { group.Group("/auth", func(group *ghttp.RouterGroup) { group.Bind(sys_controller.Auth) }) group.Group("/common", func(group *ghttp.RouterGroup) { group.Bind( sys_controller.Captcha, sys_controller.SysArea, ) }) }) group.Group("/", func(group *ghttp.RouterGroup) { router.ModulesGroup(consts.Global.IModules, group) }) }) s.Run() return nil }, } )
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.