mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
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
7 lines
81 B
Go
7 lines
81 B
Go
package auth
|
|
|
|
type UserToken interface {
|
|
GetUserId() int64
|
|
GetToken() string
|
|
}
|