mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-04 00:10:25 +08:00
13 lines
155 B
Go
13 lines
155 B
Go
package init
|
|
|
|
import (
|
|
"mayfly-go/initialize"
|
|
"mayfly-go/internal/common/api"
|
|
)
|
|
|
|
func init() {
|
|
initialize.AddInitIocFunc(func() {
|
|
api.InitIoc()
|
|
})
|
|
}
|