2023-07-22 20:51:46 +08:00
|
|
|
package persistence
|
|
|
|
|
|
2024-01-21 22:52:20 +08:00
|
|
|
import (
|
|
|
|
|
"mayfly-go/pkg/ioc"
|
2023-07-22 20:51:46 +08:00
|
|
|
)
|
|
|
|
|
|
2024-01-21 22:52:20 +08:00
|
|
|
func Init() {
|
|
|
|
|
ioc.Register(newAuthAccountRepo(), ioc.WithComponentName("Oauth2AccountRepo"))
|
|
|
|
|
}
|