open/settings/webauthn.go

10 lines
210 B
Go
Raw Normal View History

2025-02-28 19:15:32 +08:00
package settings
type WebAuthn struct {
RPDisplayName string `json:"rp_display_name"`
RPID string `json:"rpid"`
RPOrigins []string `json:"rp_origins"`
}
var WebAuthnSettings = &WebAuthn{}