- // Copyright 2019 autocareai.com. All rights reserved.
- // Use of this source code is governed by autocareai.com.
- package apis
- type QueryRequest struct {
- Code string `json:"code"`
- Params string `json:"params"`
- }
- type QueryResponse struct {
- Data string `json:"data"`
- }
|