mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-07 10:44:43 +00:00
12 lines
209 B
Go
12 lines
209 B
Go
![]() |
package handler
|
||
|
|
||
|
type webAuthNData struct {
|
||
|
userData
|
||
|
CredentialCreationData string
|
||
|
}
|
||
|
|
||
|
type webAuthNFormData struct {
|
||
|
CredentialData string `schema:"credentialData"`
|
||
|
Name string `schema:"name"`
|
||
|
}
|