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