You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pinduoduo/const.go

21 lines
404 B

package pinduoduo
const (
apiUrl = "https://gw-api.pinduoduo.com/api/router"
)
const (
LogTable = "pinduoduo"
Version = "1.0.22"
)
type ApiErrorT struct {
ErrorResponse struct {
ErrorMsg string `json:"error_msg"`
SubMsg string `json:"sub_msg"`
SubCode string `json:"sub_code"`
ErrorCode int `json:"error_code"`
RequestId string `json:"request_id"`
} `json:"error_response"`
}