mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-02-08 13:55:36 +08:00
14 lines
180 B
Go
14 lines
180 B
Go
package init
|
|
|
|
import (
|
|
"mayfly-go/internal/ai/api"
|
|
"mayfly-go/pkg/starter"
|
|
)
|
|
|
|
func init() {
|
|
// 注册AI模块的IoC组件
|
|
starter.AddInitIocFunc(func() {
|
|
api.InitIoc()
|
|
})
|
|
}
|