fix: public_key should be pubkey

This commit is contained in:
Derrick Hammer 2023-04-30 02:16:53 -04:00
parent 628f1b4aca
commit 09b9f195f4
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ type ChallengeResponse struct {
}
type PubkeyLoginRequest struct {
Pubkey string `json:"public_key"`
Pubkey string `json:"pubkey"`
Challenge string `json:"challenge"`
Signature string `json:"signature"`
}