You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

8 rivejä
224 B

  1. package response
  2. type HttpResponse struct {
  3. StatusCode int `json:"statusCode,omitempty"`
  4. Headers map[string][]string `json:"headers,omitempty"`
  5. Data interface{} `json:"data,omitempty"`
  6. }