1
0
mirror of https://github.com/MarkParker5/STARK.git synced 2024-11-24 08:12:13 +02:00
STARK/main.py

14 lines
301 B
Python

import os
modules = {
'Voice Assistant': 'voice_assistant',
'Telegram bot': 'telegram_bot',
}
for name, module in modules.items():
try:
print(f'launching the {name}')
os.system(f'start python {module}.py')
except:
print(f'[error]\t{name} launch failed')