mirror of
https://github.com/exo-explore/exo.git
synced 2026-06-24 13:58:51 -04:00
7 lines
130 B
Python
7 lines
130 B
Python
import sys
|
|
|
|
|
|
def get_runner_command() -> list[str]:
|
|
python = sys.executable
|
|
return [python, "-m", "worker.runner.runner"]
|