mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
15 lines
257 B
Go
15 lines
257 B
Go
package persistence
|
|
|
|
import (
|
|
"mayfly-go/internal/msg/domain/repository"
|
|
"mayfly-go/pkg/ioc"
|
|
)
|
|
|
|
func Init() {
|
|
ioc.Register(newMsgRepo(), ioc.WithComponentName("MsgRepo"))
|
|
}
|
|
|
|
func GetMsgRepo() repository.Msg {
|
|
return ioc.Get[repository.Msg]("msgRepo")
|
|
}
|