diff --git a/startBoth.py b/startBoth.py new file mode 100644 index 0000000..4aae98a --- /dev/null +++ b/startBoth.py @@ -0,0 +1,11 @@ +import subprocess + +bots = ["main.py", "main-kord.py"] + +processes = [] +for bot in bots: + p = subprocess.Popen(["python", bot]) + processes.append(p) + +for p in processes: + p.wait() \ No newline at end of file