errors.go 131 B

123456
  1. package types
  2. // ErrorResponse is the response body of API errors.
  3. type ErrorResponse struct {
  4. Message string `json:"message"`
  5. }