mirror of
https://github.com/onyx-and-iris/vban-cmd-python.git
synced 2024-11-15 17:10:46 +00:00
13 lines
259 B
Python
13 lines
259 B
Python
|
import subprocess
|
||
|
from pathlib import Path
|
||
|
|
||
|
|
||
|
def ex_obs():
|
||
|
path = Path.cwd() / "examples" / "obs" / "."
|
||
|
subprocess.run(["py", str(path)])
|
||
|
|
||
|
|
||
|
def ex_observer():
|
||
|
path = Path.cwd() / "examples" / "observer" / "."
|
||
|
subprocess.run(["py", str(path)])
|