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