Files
sonr/internal/orm/oidc.go
T

10 lines
187 B
Go

package orm
type UserInfo struct {
DID string
Sub string `json:"sub"`
Name string `json:"name,omitempty"`
Email string `json:"email,omitempty"`
// Add other claims as needed
}