Files
sonr/internal/orm/oidc.go
T

10 lines
187 B
Go
Raw Normal View History

2024-07-05 22:20:13 -04:00
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
}