Files
strepsiades f5729d5a18 整理代码
2026-04-03 09:18:44 +08:00

15 lines
299 B
Python

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