mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 13:32:12 +08:00
10 lines
92 B
Go
10 lines
92 B
Go
package models
|
|
|
|
type OAuthType int
|
|
|
|
const (
|
|
GITHUB OAuthType = iota + 1
|
|
GOOGLE
|
|
TWITTER
|
|
)
|