package identity import "github.com/google/uuid" type Claims struct { UserID uuid.UUID `json:"user_id"` Username string `json:"username"` Role string `json:"role"` Session uuid.UUID `json:"session_id"` }