14 lines
283 B
Python
Executable File
14 lines
283 B
Python
Executable File
#!/usr/bin/env python3
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
module_path = Path(__file__).parent.parent.absolute()
|
|
|
|
sys.path.insert(0, str(module_path))
|
|
sys.path.insert(0, str(module_path.parent / "clan_cli"))
|
|
|
|
from clan_app import main # NOQA
|
|
|
|
if __name__ == "__main__":
|
|
main()
|