Merge pull request #53 from gnadelwartz/gnadelwartz-patch-2

Add delete message support
This commit is contained in:
Drew 2019-03-22 09:32:02 -04:00 committed by GitHub
commit b641a96711
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -153,6 +153,10 @@ send_html_message() {
done
}
delete_message() {
res=$(curl -s "$DELETE_URL" -F "chat_id=$1" -F "message_id=$2")
}
kick_chat_member() {
res=$(curl -s "$KICK_URL" -F "chat_id=$1" -F "user_id=$2")
}