mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-13 04:40:24 +08:00
17 lines
282 B
Go
17 lines
282 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"))
|
|
}
|
|
|
|
func GetMongoApp() Mongo {
|
|
return ioc.Get[Mongo]("MongoApp")
|
|
}
|