response.go 149 B

1234567
  1. package http
  2. type Response struct {
  3. Code int `json:"errno"`
  4. Message string `json:"errmsg"`
  5. Result interface{} `json:"result"`
  6. }