mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-06 17:30:25 +08:00
10 lines
147 B
Go
10 lines
147 B
Go
|
|
package persistence
|
||
|
|
|
||
|
|
import (
|
||
|
|
"mayfly-go/pkg/ioc"
|
||
|
|
)
|
||
|
|
|
||
|
|
func InitIoc() {
|
||
|
|
ioc.Register(newContainerRepo(), ioc.WithComponentName("ContainerRepo"))
|
||
|
|
}
|