11 lines
190 B
Python
11 lines
190 B
Python
#!/usr/bin/env python3
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
sys.path.insert(0, str(Path(__file__).resolve().parent))
|
|
|
|
from app import cli # noqa: E402
|
|
|
|
if __name__ == "__main__":
|
|
cli()
|