Files
mayfly-go/server/internal/msg/infrastructure/persistence/persistence.go
2024-01-29 11:34:48 +08:00

10 lines
132 B
Go

package persistence
import (
"mayfly-go/pkg/ioc"
)
func Init() {
ioc.Register(newMsgRepo(), ioc.WithComponentName("MsgRepo"))
}