diff options
author | Adrian Kummerlaender | 2016-03-10 22:33:48 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2016-03-10 22:33:48 +0100 |
commit | 3409325cf635b25036b7132df7e47e767bda65e8 (patch) | |
tree | f04ba56556bfbf967733216625d1b6c53f127394 | |
parent | b9a9429f49fea31681d9492eca3903b141c10a21 (diff) | |
download | Telebot-3409325cf635b25036b7132df7e47e767bda65e8.tar Telebot-3409325cf635b25036b7132df7e47e767bda65e8.tar.gz Telebot-3409325cf635b25036b7132df7e47e767bda65e8.tar.bz2 Telebot-3409325cf635b25036b7132df7e47e767bda65e8.tar.lz Telebot-3409325cf635b25036b7132df7e47e767bda65e8.tar.xz Telebot-3409325cf635b25036b7132df7e47e767bda65e8.tar.zst Telebot-3409325cf635b25036b7132df7e47e767bda65e8.zip |
Implement `sendLocation`
-rw-r--r-- | telebot.scm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/telebot.scm b/telebot.scm index ba4a508..294244d 100644 --- a/telebot.scm +++ b/telebot.scm @@ -1,6 +1,7 @@ (module telebot (getMe getUpdates sendMessage + sendLocation sendChatAction forwardMessage getUserProfilePhotos) @@ -52,6 +53,13 @@ reply_to_message_id reply_markup)) + (wrap-api-method sendLocation(chat_id + latitude + longitude + disable_notification + reply_to_message_id + reply_markup)) + (wrap-api-method sendChatAction(chat_id action)) (wrap-api-method forwardMessage(chat_id |