Первый стрим
This commit is contained in:
11
app/handlers/user_command.py
Normal file
11
app/handlers/user_command.py
Normal file
@ -0,0 +1,11 @@
|
||||
import subprocess
|
||||
|
||||
from aiogram.types import Message
|
||||
|
||||
|
||||
async def execute_command(message: Message):
|
||||
user_command = message.text.split()[1:]
|
||||
print(user_command)
|
||||
sub = subprocess.check_output(user_command)
|
||||
# print(sub)
|
||||
await message.answer(f"<pre><code>{sub.decode()}</code></pre>", parse_mode="HTML")
|
Reference in New Issue
Block a user