mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
12 lines
114 B
Go
12 lines
114 B
Go
package models
|
|
|
|
type OAuthType int
|
|
|
|
const (
|
|
GITHUB OAuthType = iota + 1
|
|
GOOGLE
|
|
TWITTER
|
|
GENERIC
|
|
GRAFANA_COM
|
|
)
|