Files
mayfly-go/server/internal/auth/application/application.go

12 lines
193 B
Go
Raw Normal View History

2023-07-22 20:51:46 +08:00
package application
import "mayfly-go/internal/auth/infrastructure/persistence"
var (
authApp = newAuthApp(persistence.GetOauthAccountRepo())
)
func GetAuthApp() Oauth2 {
return authApp
}