mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-05 08:50:25 +08:00
10 lines
143 B
Go
10 lines
143 B
Go
|
|
package api
|
||
|
|
|
||
|
|
import "mayfly-go/pkg/ioc"
|
||
|
|
|
||
|
|
func InitIoc() {
|
||
|
|
ioc.Register(new(Docker))
|
||
|
|
ioc.Register(new(Container))
|
||
|
|
ioc.Register(new(Image))
|
||
|
|
}
|