Update main.py
Browse files
main.py
CHANGED
@@ -293,8 +293,8 @@ async def get_chat_raw(username: str = None):
|
|
293 |
}
|
294 |
|
295 |
|
296 |
-
async def send_to_telegram(
|
297 |
-
return await bot.send_message(
|
298 |
|
299 |
@fast_app.post("/log_captcha")
|
300 |
async def log_captcha(data: dict):
|
|
|
293 |
}
|
294 |
|
295 |
|
296 |
+
async def send_to_telegram(user_id="@xpushz", text: str = None):
|
297 |
+
return await bot.send_message(user_id, text=text)
|
298 |
|
299 |
@fast_app.post("/log_captcha")
|
300 |
async def log_captcha(data: dict):
|