Files
mayfly-go/server/internal/es/application/application.go

16 lines
204 B
Go
Raw Normal View History

package application
import (
"mayfly-go/pkg/ioc"
"sync"
)
func InitIoc() {
ioc.Register(new(instanceAppImpl), ioc.WithComponentName("EsInstanceApp"))
}
func Init() {
sync.OnceFunc(func() {
})()
}