Kaveh commited on
Commit
ced394c
·
unverified ·
1 Parent(s): 8e1a59b

Create responder.py

Browse files
Files changed (1) hide show
  1. bot/responder.py +5 -0
bot/responder.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ from telegram import Bot
2
+
3
+ def send_summary(bot: Bot, chat_id: int, summary: str):
4
+ # می‌تونی اینجا بعداً قالب‌بندی یا شکل‌های بهتری اضافه کنی
5
+ bot.send_message(chat_id=chat_id, text=summary)