9 lines
117 B
Python
9 lines
117 B
Python
import sys
|
|
|
|
|
|
if sys.argv[-1] == "bot":
|
|
from bot import run_bot
|
|
run_bot()
|
|
else:
|
|
raise NotImplementedError
|