mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-01-28 16:35:49 +08:00
12 lines
202 B
Go
12 lines
202 B
Go
package persistence
|
|
|
|
import "mayfly-go/internal/auth/domain/repository"
|
|
|
|
var (
|
|
authAccountRepo = newAuthAccountRepo()
|
|
)
|
|
|
|
func GetOauthAccountRepo() repository.Oauth2Account {
|
|
return authAccountRepo
|
|
}
|