mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-05-19 01:15:40 +08:00
14 lines
208 B
Go
14 lines
208 B
Go
// Package api 提供 Milvus 相关的 API 接口处理。
|
|
package api
|
|
|
|
import (
|
|
"mayfly-go/pkg/ioc"
|
|
)
|
|
|
|
// InitIoc 初始化 IOC
|
|
func InitIoc() {
|
|
ioc.Register(new(Milvus))
|
|
ioc.Register(new(Collection))
|
|
|
|
}
|