mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2026-05-07 06:23:39 +08:00
10 lines
210 B
Go
10 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{}
|