mirror of
https://github.com/therootcompany/telebit.git
synced 2025-12-23 22:08:47 +00:00
13 lines
243 B
Go
13 lines
243 B
Go
package authutil
|
|
|
|
import "github.com/dgrijalva/jwt-go"
|
|
|
|
// MWKey is a type guard for context.Value
|
|
type MWKey string
|
|
|
|
// Claims includes a Slug, for backwards compatibility
|
|
type Claims struct {
|
|
Slug string `json:"slug"`
|
|
jwt.StandardClaims
|
|
}
|