mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
10 lines
139 B
Go
10 lines
139 B
Go
package persistence
|
|
|
|
import (
|
|
"mayfly-go/pkg/ioc"
|
|
)
|
|
|
|
func InitIoc() {
|
|
ioc.Register(newMongoRepo(), ioc.WithComponentName("MongoRepo"))
|
|
}
|