Spaces:
Runtime error
Runtime error
| package models | |
| import ( | |
| "github.com/golang-jwt/jwt/v4" | |
| uuid "github.com/satori/go.uuid" | |
| ) | |
| type JWTCustomClaims struct { | |
| IdUser uuid.UUID `json:"user_id" binding:"required"` | |
| jwt.RegisteredClaims | |
| } | |
| type AccountData struct { | |
| IdUser uuid.UUID `json:"user_id" binding:"required"` | |
| } | |