2025-06-20 17:13:51 +08:00
|
|
|
package demo
|
|
|
|
|
|
|
|
|
|
import (
|
2025-07-26 03:48:06 +00:00
|
|
|
"blazing/cool"
|
2025-06-20 22:03:38 +00:00
|
|
|
_ "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()
|
|
|
|
|
)
|
2025-12-25 12:14:04 +08:00
|
|
|
cool.Logger.Debug(ctx, "module space init start ...")
|
|
|
|
|
cool.Logger.Debug(ctx, "module space init finished ...")
|
2025-06-20 17:13:51 +08:00
|
|
|
}
|