-
Notifications
You must be signed in to change notification settings - Fork 1
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
allan
committed
Feb 6, 2023
1 parent
44e72be
commit 2019ffb
Showing
3 changed files
with
105 additions
and
21 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,18 @@ | ||
package mist_go | ||
|
||
|
||
/* | ||
{ | ||
"authorize": { | ||
"challenge": "", | ||
"status": "CHALL" | ||
} | ||
} | ||
{ | ||
"authorize": { | ||
"challenge": "", | ||
"status": "CHALL" | ||
} | ||
} | ||
*/ | ||
type ResponseAuth struct { | ||
type ResponseBase struct { | ||
Authorize Authorize `json:"authorize"` | ||
} | ||
|
||
type Authorize struct { | ||
Challenge string `json:"challenge"` | ||
Status string `json:"status"` | ||
} | ||
Challenge string `json:"challenge"` | ||
Status string `json:"status"` | ||
} |