mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-09 19:00:27 +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
|
||
|
|
}
|