mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
13 lines
228 B
Go
13 lines
228 B
Go
package init
|
|
|
|
import (
|
|
"mayfly-go/initialize"
|
|
"mayfly-go/internal/sys/application"
|
|
"mayfly-go/internal/sys/router"
|
|
)
|
|
|
|
func init() {
|
|
initialize.AddInitIocFunc(application.InitIoc)
|
|
initialize.AddInitRouterFunc(router.Init)
|
|
}
|