You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Comrad/komrade/operators/run_op.py

3 lines
149 B
Python

import sys
port = '8080' if len(sys.argv)<2 or not sys.argv[1].isdigit() else sys.argv[1]
from operators import run_forever; run_forever(port = port)