diff options
-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 |