mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-02-02 02:45:48 +08:00
14 lines
177 B
Go
14 lines
177 B
Go
package application
|
|
|
|
import (
|
|
"mayfly-go/pkg/ioc"
|
|
)
|
|
|
|
func InitIoc() {
|
|
ioc.Register(new(containerAppImpl))
|
|
}
|
|
|
|
func GetContainerApp() Container {
|
|
return ioc.Get[Container]()
|
|
}
|