mirror of https://github.com/grafana/grafana.git
15 lines
267 B
Go
15 lines
267 B
Go
|
package setting
|
||
|
|
||
|
type OAuthInfo struct {
|
||
|
ClientId, ClientSecret string
|
||
|
Scopes []string
|
||
|
AuthUrl, TokenUrl string
|
||
|
}
|
||
|
|
||
|
type OAuther struct {
|
||
|
GitHub, Google, Twitter bool
|
||
|
OAuthInfos map[string]*OAuthInfo
|
||
|
}
|
||
|
|
||
|
var OAuthService *OAuther
|