grafana/pkg/models/models.go
Dieter Plaetinck 66ba19b7ba clearer errors
"Not found" should only be for http path/method not found (404)
if it's about specific resources, we should be explicit for clarity
2015-07-08 08:55:31 +02:00

10 lines
92 B
Go

package models
type OAuthType int
const (
GITHUB OAuthType = iota + 1
GOOGLE
TWITTER
)