mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-04 00:10:25 +08:00
13 lines
253 B
Go
13 lines
253 B
Go
package api
|
|
|
|
import "mayfly-go/pkg/ioc"
|
|
|
|
func InitIoc() {
|
|
ioc.Register(new(Dashbord))
|
|
ioc.Register(new(Machine))
|
|
ioc.Register(new(MachineFile))
|
|
ioc.Register(new(MachineScript))
|
|
ioc.Register(new(MachineCronJob))
|
|
ioc.Register(new(MachineCmdConf))
|
|
}
|