mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-05-20 09:55:25 +08:00
16 lines
342 B
Go
16 lines
342 B
Go
package persistence
|
|
|
|
import (
|
|
"mayfly-go/pkg/ioc"
|
|
)
|
|
|
|
func InitIoc() {
|
|
ioc.Register(newMachineRepo())
|
|
ioc.Register(newMachineFileRepo())
|
|
ioc.Register(newMachineScriptRepo())
|
|
ioc.Register(newMachineCronJobRepo())
|
|
ioc.Register(newMachineCronJobExecRepo())
|
|
ioc.Register(newMachineTermOpRepoImpl())
|
|
ioc.Register(newMachineCmdConfRepo())
|
|
}
|