Files
mayfly-go/server/internal/msg/infrastructure/persistence/persistence.go

10 lines
132 B
Go
Raw Normal View History

2023-07-03 21:42:04 +08:00
package persistence
2024-01-21 22:52:20 +08:00
import (
"mayfly-go/pkg/ioc"
2023-07-03 21:42:04 +08:00
)
2024-01-21 22:52:20 +08:00
func Init() {
ioc.Register(newMsgRepo(), ioc.WithComponentName("MsgRepo"))
}