txlyre 1 year ago
parent
commit
d4598b6023
1 changed files with 11 additions and 1 deletions
  1. 11 1
      commands.py

+ 11 - 1
commands.py

@@ -410,7 +410,17 @@ async def vpn_handler(bot, event, command):
 
 async def run_handler(bot, event, command):
   if command.argc < 1:
-    await event.reply('Пожалуйста, не оставляйте ввод пустым!')
+    async with ClientSession() as session:
+      try:
+        async with session.get(
+          'https://farlands.txlyre.website/langs'
+        ) as resp:
+          text = await resp.read()
+          text = text.decode('UTF-8')
+
+          await event.reply(f'Доступные языки:\n`{text}`')
+      except:
+        await event.reply('Произошла ошибка при попытке обращения к API… :(')
 
     return