Files
mayfly-go/server/internal/mongo/infra/persistence/persistence.go

10 lines
139 B
Go
Raw Normal View History

2022-09-09 18:26:08 +08:00
package persistence
import (
2024-01-21 22:52:20 +08:00
"mayfly-go/pkg/ioc"
2022-09-09 18:26:08 +08:00
)
2024-03-02 19:08:19 +08:00
func InitIoc() {
2024-01-21 22:52:20 +08:00
ioc.Register(newMongoRepo(), ioc.WithComponentName("MongoRepo"))
}