13 lines
232 B
Python
Executable File
13 lines
232 B
Python
Executable File
#!/usr/bin/python3
|
|
import os
|
|
import sys
|
|
|
|
_HERE = os.path.dirname(os.path.realpath(__file__))
|
|
_ROOT = os.path.dirname(_HERE)
|
|
if _ROOT not in sys.path:
|
|
sys.path.insert(0, _ROOT)
|
|
|
|
from src.cli import main
|
|
|
|
raise SystemExit(main())
|