gopay/internal/jwt/jwt.go

18 lines
232 B
Go
Raw Normal View History

2024-06-03 12:51:42 +00:00
package jwt
import "github.com/golang-jwt/jwt"
// JWT secret
var secret string
// JWT claims
type Claims struct {
jwt.StandardClaims
ID int `json:"id"` // User ID
}
// Set the JWT secret
func New(sec string) {
secret = sec
}