mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-10 18:05:48 +02:00
9 lines
210 B
Go
9 lines
210 B
Go
package settings
|
|
|
|
type WebAuthn struct {
|
|
RPDisplayName string `json:"rp_display_name"`
|
|
RPID string `json:"rpid"`
|
|
RPOrigins []string `json:"rp_origins"`
|
|
}
|
|
|
|
var WebAuthnSettings = &WebAuthn{}
|