Skip to content

Instantly share code, notes, and snippets.

@plutov
Created April 27, 2020 10:41
Show Gist options
  • Save plutov/50be7bf3066137765fc7e1969028bb3c to your computer and use it in GitHub Desktop.
Save plutov/50be7bf3066137765fc7e1969028bb3c to your computer and use it in GitHub Desktop.
api-client-2.go
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