mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
17 lines
265 B
Go
17 lines
265 B
Go
package application
|
|
|
|
import (
|
|
"mayfly-go/internal/msg/infrastructure/persistence"
|
|
"mayfly-go/pkg/ioc"
|
|
)
|
|
|
|
func init() {
|
|
persistence.Init()
|
|
|
|
ioc.Register(new(msgAppImpl), ioc.WithComponentName("MsgApp"))
|
|
}
|
|
|
|
func GetMsgApp() Msg {
|
|
return ioc.Get[Msg]("MsgApp")
|
|
}
|