hdkv
/
fwzookeeper
Archived
1
Fork 0
This repository has been archived on 2022-11-04. You can view files and clone it, but cannot push or open issues/pull-requests.
fwzookeeper/vendor/gitlab.com/toby3d/telegram/delete_webhook.go

16 lines
394 B
Go

package telegram
import json "github.com/pquerna/ffjson/ffjson"
// DeleteWebhook remove webhook integration if you decide to switch back to
// getUpdates. Returns True on success. Requires no parameters.
func (bot *Bot) DeleteWebhook() (ok bool, err error) {
resp, err := bot.request(nil, MethodDeleteWebhook)
if err != nil {
return
}
err = json.Unmarshal(*resp.Result, &ok)
return
}