mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-06 01:10:26 +08:00
13 lines
232 B
Go
13 lines
232 B
Go
|
|
package init
|
||
|
|
|
||
|
|
import (
|
||
|
|
"mayfly-go/initialize"
|
||
|
|
"mayfly-go/internal/mongo/application"
|
||
|
|
"mayfly-go/internal/mongo/router"
|
||
|
|
)
|
||
|
|
|
||
|
|
func init() {
|
||
|
|
initialize.AddInitIocFunc(application.InitIoc)
|
||
|
|
initialize.AddInitRouterFunc(router.Init)
|
||
|
|
}
|