This commit is contained in:
2025-06-20 17:13:51 +08:00
parent 1b55403cd6
commit fd0345a034
472 changed files with 52560 additions and 77 deletions

16
modules/space/space.go Normal file
View File

@@ -0,0 +1,16 @@
package demo
import (
_ "github.com/cool-team-official/cool-admin-go/modules/space/controller"
_ "github.com/cool-team-official/cool-admin-go/modules/space/middleware"
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gctx"
)
func init() {
var (
ctx = gctx.GetInitCtx()
)
g.Log().Debug(ctx, "module space init start ...")
g.Log().Debug(ctx, "module space init finished ...")
}