response.go 139 B

1234567
  1. package web
  2. type Response struct {
  3. Code int `json:"code"`
  4. Message string `json:"msg"`
  5. RequestId string `json:"request_id"`
  6. }