Files
bl/modules/space/space.go

18 lines
317 B
Go
Raw Normal View History

2025-06-20 17:13:51 +08:00
package demo
import (
"blazing/cool"
_ "blazing/modules/space/controller"
_ "blazing/modules/space/middleware"
2025-06-20 17:13:51 +08:00
"github.com/gogf/gf/v2/os/gctx"
)
func init() {
var (
ctx = gctx.GetInitCtx()
)
cool.Logger.Debug(ctx, "module space init start ...")
cool.Logger.Debug(ctx, "module space init finished ...")
2025-06-20 17:13:51 +08:00
}