response.go 234 B

123456789101112
  1. package eta_llm_http
  2. import "encoding/json"
  3. type BaseResponse struct {
  4. Ret int `json:"ret"`
  5. Msg string `json:"msg"`
  6. Success bool `json:"success"`
  7. Data json.RawMessage `json:"data"`
  8. }