co-maps/tools/python/test_server/start_server.py
2025-11-22 13:58:55 +01:00

7 lines
186 B
Python
Executable file

#!/usr/bin/env python3
import subprocess
SERVER_RUNNABLE = 'server/testserver.py'
subprocess.Popen(['python3', SERVER_RUNNABLE], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)