Files
grafana/pkg/models/models.go

14 lines
152 B
Go
Raw Normal View History

2014-10-07 15:54:38 -04:00
package models
2015-03-21 08:53:16 -04:00
import "errors"
2014-10-07 15:54:38 -04:00
type OAuthType int
const (
GITHUB OAuthType = iota + 1
GOOGLE
TWITTER
)
2015-03-21 08:53:16 -04:00
var ErrNotFound = errors.New("Not found")