Files
mayfly-go/server/internal/auth/infrastructure/persistence/persistence.go

12 lines
202 B
Go
Raw Normal View History

2023-07-22 20:51:46 +08:00
package persistence
import "mayfly-go/internal/auth/domain/repository"
var (
authAccountRepo = newAuthAccountRepo()
)
func GetOauthAccountRepo() repository.Oauth2Account {
return authAccountRepo
}