2022-09-23 21:37:00 +02:00

12 lines
138 B
Go

package models
import (
jwt "github.com/dgrijalva/jwt-go"
)
type Claim struct {
ID int64 `json:"id,omitempty"`
jwt.StandardClaims
}