Skip to content

Commit

Permalink
remove required binding
Browse files Browse the repository at this point in the history
  • Loading branch information
inciner8r committed Nov 2, 2023
1 parent fbdaf8e commit a06644d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions api/v1/authenticate/types.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package authenticate

type AuthenticateRequest struct {
ChallengeId string `json:"challengeId" binding:"required"`
Signature string `json:"signature" binding:"required"`
PubKey string `json:"pubKey" binding:"required"`
ChallengeId string `json:"challengeId"`
Signature string `json:"signature"`
PubKey string `json:"pubKey"`
}

type AuthenticatePayload struct {
Expand Down

0 comments on commit a06644d

Please sign in to comment.