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

10 lines
153 B
Go

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