Created
April 27, 2020 10:41
-
-
Save plutov/50be7bf3066137765fc7e1969028bb3c to your computer and use it in GitHub Desktop.
api-client-2.go
This file contains hidden or 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
type errorResponse struct { | |
Code int `json:"code"` | |
Message string `json:"message"` | |
} | |
type successResponse struct { | |
Code int `json:"code"` | |
Data interface{} `json:"data"` | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment