Update main.py
Browse files
main.py
CHANGED
@@ -202,6 +202,10 @@ async def _alert(_, cb):
|
|
202 |
@fast_app.get("/user/tg/notifications")
|
203 |
async def user_send_notif(user_id: int = None, api_key: str = None):
|
204 |
try:
|
|
|
|
|
|
|
|
|
205 |
await bot.send_message(
|
206 |
user_id,
|
207 |
text=NOTIF_KEY.format(api_key=api_key)
|
|
|
202 |
@fast_app.get("/user/tg/notifications")
|
203 |
async def user_send_notif(user_id: int = None, api_key: str = None):
|
204 |
try:
|
205 |
+
await bot.send_sticker(
|
206 |
+
user_id,
|
207 |
+
"CAACAgUAAyEGAASPgam4AAI5T2fTWtyF4FNdBlRL-PWcs_l3Y0emAAI-BwACj774VGLOns79NgeCHgQ"
|
208 |
+
)
|
209 |
await bot.send_message(
|
210 |
user_id,
|
211 |
text=NOTIF_KEY.format(api_key=api_key)
|