Skip to content
Snippets Groups Projects
Select Git revision
  • 8f46f1b1fd13649ff3a83dd2b5c3efb2220848c5
  • master default
  • registry-mirror
  • nginx-default-site
  • acmeserver2
  • clickhouse
  • improve-dns-toplevel-probes
  • tabacco-in-container
  • rsyslog-modern-json
  • improve-service-discovery
  • prometheus-external-healthchecks
  • env-vars-in-include-paths
  • dns-resolver
  • service-turndown
  • use_proxy_protocol
  • loki
  • docs_operating
  • net-overlay_firewall_containers
  • webdiff
19 results

http_router.md

Blame
  • passkey_authenticator.go 672 B
    package metadata
    
    // PasskeyAuthenticator is a type that represents the schema from the Passkey Developer AAGUID listing.
    //
    // See: https://github.com/passkeydeveloper/passkey-authenticator-aaguids
    type PasskeyAuthenticator map[string]PassKeyAuthenticatorAAGUID
    
    // PassKeyAuthenticatorAAGUID is a type that represents the indivudal schema entry from the Passkey Developer AAGUID
    // listing. Used with PasskeyAuthenticator.
    //
    // See: https://github.com/passkeydeveloper/passkey-authenticator-aaguids
    type PassKeyAuthenticatorAAGUID struct {
    	Name      string `json:"name"`
    	IconDark  string `json:"icon_dark,omitempty"`
    	IconLight string `json:"icon_light,omitempty"`
    }