wg-gen-web/auth/auth.go

14 lines
267 B
Go
Raw Normal View History

2020-04-28 11:11:49 +00:00
package auth
import (
"gitlab.127-0-0-1.fr/vx3r/wg-gen-web/model"
"golang.org/x/oauth2"
)
type Auth interface {
Setup() error
CodeUrl(state string) string
Exchange(code string) (*oauth2.Token, error)
UserInfo(oauth2Token *oauth2.Token) (*model.User, error)
}