Files
grafana/pkg/services/auth/auth.go
Marcus Efraimsson 7cd3cd6cd4 auth package refactoring
moving middleware/hooks away from package
exposing public struct UserToken accessible from other packages
fix debug log lines so the same order and naming are used
2019-02-05 00:10:56 +01:00

7 lines
81 B
Go

package auth
type UserToken interface {
GetUserId() int64
GetToken() string
}