mirror of
https://bitbucket.org/skobkin/point-tools-go.git
synced 2024-11-21 20:36:04 +00:00
8 lines
173 B
Go
8 lines
173 B
Go
package point_tools
|
|
|
|
// ApiError represents the typical error object in API response
|
|
type ApiError struct {
|
|
Code int `json:"code"`
|
|
Message string `json:"message"`
|
|
}
|