You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
405 B
Go
13 lines
405 B
Go
package passkey
|
|
|
|
import "github.com/go-webauthn/webauthn/webauthn"
|
|
|
|
type PasskeyCredentialRecord struct {
|
|
ID string `json:"id"`
|
|
Name string `json:"name"`
|
|
CreatedAt string `json:"createdAt"`
|
|
LastUsedAt string `json:"lastUsedAt"`
|
|
FlagsValue uint8 `json:"flagsValue"`
|
|
Credential webauthn.Credential `json:"credential"`
|
|
}
|