Files
gaokao-volunteer-system/scripts/gaokao_retention_cleanup.py

15 lines
293 B
Python
Raw Normal View History

from __future__ import annotations
import sys
from pathlib import Path
ROOT = Path(__file__).resolve().parent.parent
if str(ROOT) not in sys.path:
sys.path.insert(0, str(ROOT))
if __name__ == "__main__":
from data.orders.retention_cleanup import main
raise SystemExit(main())