Files
grafana/pkg/models/models.go
T

13 lines
122 B
Go
Raw Normal View History

2014-10-07 15:54:38 -04:00
package models
type OAuthType int
const (
GITHUB OAuthType = iota + 1
GOOGLE
TWITTER
GENERIC
GRAFANA_COM
2018-02-15 19:13:47 +01:00
GITLAB
2014-10-07 15:54:38 -04:00
)