7cd3cd6cd4
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
|
|
}
|