http.go 221 B

12345678910
  1. package http
  2. type Response struct {
  3. Success bool `json:"success"`
  4. Code int `json:"code"`
  5. Message string `json:"message"`
  6. Data interface{} `json:"data"`
  7. Msg string `json:"msg"`
  8. }