19 lines
245 B
Go
19 lines
245 B
Go
package request
|
|
|
|
import (
|
|
"github.com/golang-jwt/jwt/v5"
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type CustomClaims struct {
|
|
BaseClaims
|
|
BufferTime int64
|
|
jwt.RegisteredClaims
|
|
}
|
|
|
|
type BaseClaims struct {
|
|
UUID uuid.UUID
|
|
ID uint
|
|
Account string
|
|
}
|