mirror of
https://github.com/jsiebens/ionscale.git
synced 2026-03-31 15:07:49 +01:00
13 lines
217 B
Go
13 lines
217 B
Go
package auth
|
|
|
|
type Provider interface {
|
|
GetLoginURL(redirectURI, state string) string
|
|
Exchange(redirectURI, code string) (*User, error)
|
|
}
|
|
|
|
type User struct {
|
|
ID string
|
|
Name string
|
|
Attr map[string]interface{}
|
|
}
|