File size: 131 Bytes
f71a293
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
package models

import "github.com/golang-jwt/jwt/v5"

type CustomClaims struct {
	jwt.RegisteredClaims
	UserID uint `json:"id"`
}