mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-20 16:20:25 +08:00
* feat: 表格+表格元数据缓存 * feat:跳板机支持多段跳 * fix: 所有数据库区分字段主键和自增 * feat: DBMS支持mssql * refactor: 去除无用的getter方法
13 lines
217 B
Go
13 lines
217 B
Go
package application
|
|
|
|
import (
|
|
"mayfly-go/internal/mongo/infrastructure/persistence"
|
|
"mayfly-go/pkg/ioc"
|
|
)
|
|
|
|
func InitIoc() {
|
|
persistence.Init()
|
|
|
|
ioc.Register(new(mongoAppImpl), ioc.WithComponentName("MongoApp"))
|
|
}
|