grafana/pkg/models/models.go
2015-03-21 08:53:16 -04:00

14 lines
152 B
Go

package models
import "errors"
type OAuthType int
const (
GITHUB OAuthType = iota + 1
GOOGLE
TWITTER
)
var ErrNotFound = errors.New("Not found")