Files
bl/modules/space/space.go

16 lines
261 B
Go
Raw Normal View History

2025-06-20 17:13:51 +08:00
package demo
import (
_ "blazing/modules/space/controller"
_ "blazing/modules/space/middleware"
"fmt"
2025-06-20 17:13:51 +08:00
)
func init() {
// var (
// ctx = gctx.GetInitCtx()
// )
fmt.Println("module space init start ...")
fmt.Println("module space init finished ...")
2025-06-20 17:13:51 +08:00
}