mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 04:59:15 -06:00
14 lines
276 B
Go
14 lines
276 B
Go
package clients
|
|
|
|
import "github.com/grafana/grafana/pkg/apimachinery/errutil"
|
|
|
|
const (
|
|
basicPrefix = "Basic "
|
|
bearerPrefix = "Bearer "
|
|
authorizationHeaderName = "Authorization"
|
|
)
|
|
|
|
var (
|
|
errIdentityNotFound = errutil.NotFound("identity.not-found")
|
|
)
|