Files
mayfly-go/server/internal/msg/infrastructure/persistence/persistence.go
2024-03-02 19:08:19 +08:00

10 lines
135 B
Go

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