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.
wikeyun/rest.oil.del_card.go

11 lines
319 B

package wikeyun
// RestOilCardDel 油卡删除
func (app *App) RestOilCardDel(notMustParams ...Params) (body []byte, err error) {
// 参数
params := app.NewParamsWith(notMustParams...)
// 请求
request, err := app.request("https://router.wikeyun.cn/rest/Oil/delCard", params)
return request.ResponseBody, err
}