mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 16:00:25 +08:00
10 lines
132 B
Go
10 lines
132 B
Go
package persistence
|
|
|
|
import (
|
|
"mayfly-go/pkg/ioc"
|
|
)
|
|
|
|
func Init() {
|
|
ioc.Register(newMsgRepo(), ioc.WithComponentName("MsgRepo"))
|
|
}
|