-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
faeda90
commit f345e8a
Showing
9 changed files
with
147 additions
and
159 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,16 @@ | ||
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"` | ||
IconLight string `json:"icon_light"` | ||
IconDark string `json:"icon_dark,omitempty"` | ||
IconLight string `json:"icon_light,omitempty"` | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.