mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 16:00:25 +08:00
12 lines
193 B
Go
12 lines
193 B
Go
package application
|
|
|
|
import "mayfly-go/internal/auth/infrastructure/persistence"
|
|
|
|
var (
|
|
authApp = newAuthApp(persistence.GetOauthAccountRepo())
|
|
)
|
|
|
|
func GetAuthApp() Oauth2 {
|
|
return authApp
|
|
}
|