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