mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-02-16 09:15:39 +08:00
9 lines
112 B
Go
9 lines
112 B
Go
package api
|
|
|
|
import "mayfly-go/pkg/ioc"
|
|
|
|
func InitIoc() {
|
|
// 注册AI SQL API组件
|
|
ioc.Register(new(AiDB))
|
|
}
|