19 lines
416 B
Python
Executable File
19 lines
416 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""gaokao-audit CLI wrapper."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import importlib
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
PROJECT_ROOT = Path(__file__).resolve().parent.parent
|
|
if str(PROJECT_ROOT) not in sys.path:
|
|
sys.path.insert(0, str(PROJECT_ROOT))
|
|
|
|
main = importlib.import_module("skills.gaokao-audit.scripts.audit_cli").main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|