aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--telebot.scm7
1 files changed, 6 insertions, 1 deletions
diff --git a/telebot.scm b/telebot.scm
index bd0221a..aa371d8 100644
--- a/telebot.scm
+++ b/telebot.scm
@@ -1,7 +1,8 @@
(module telebot (getMe
getUpdates
sendMessage
- forwardMessage)
+ forwardMessage
+ getUserProfilePhotos)
(import chicken scheme)
(use srfi-1)
(use openssl)
@@ -54,4 +55,8 @@
from_chat_id
message_id
disable_notification))
+
+ (wrap-api-method getUserProfilePhotos(user_id
+ offset
+ limit))
)