1
0
Fork 0
mirror of https://github.com/Luzifer/nginx-sso.git synced 2024-10-18 07:34:22 +00:00
nginx-sso/core.go
Knut Ahlers 42db8e247d
Implement oAuth2 provider: Google
fixes #15
refs #35

Signed-off-by: Knut Ahlers <knut@ahlers.me>
2019-04-22 06:42:44 +02:00

7 lines
148 B
Go

package main
import "github.com/Luzifer/nginx-sso/plugins/auth/google"
func registerModules() {
registerAuthenticator(google.New(cookieStore))
}