mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-12-09 01:10:26 +08:00
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"))
|
|
}
|