16 lines
261 B
Go
16 lines
261 B
Go
package demo
|
|
|
|
import (
|
|
_ "blazing/modules/space/controller"
|
|
_ "blazing/modules/space/middleware"
|
|
"fmt"
|
|
)
|
|
|
|
func init() {
|
|
// var (
|
|
// ctx = gctx.GetInitCtx()
|
|
// )
|
|
fmt.Println("module space init start ...")
|
|
fmt.Println("module space init finished ...")
|
|
}
|