You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
329 B
22 lines
329 B
|
3 years ago
|
package request
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/dgrijalva/jwt-go"
|
||
|
|
uuid "github.com/satori/go.uuid"
|
||
|
|
)
|
||
|
|
|
||
|
|
// Custom claims structure
|
||
|
|
type CustomClaims struct {
|
||
|
|
BaseClaims
|
||
|
|
BufferTime int64
|
||
|
|
jwt.StandardClaims
|
||
|
|
}
|
||
|
|
|
||
|
|
type BaseClaims struct {
|
||
|
|
UUID uuid.UUID
|
||
|
|
ID uint
|
||
|
|
Username string
|
||
|
|
NickName string
|
||
|
|
AuthorityId string
|
||
|
|
}
|