#!/usr/bin/env python3
"""Local entry point for the XP01 schema-4 ledger."""
from pathlib import Path
import sys

ROOT = Path(__file__).resolve().parents[1]
sys.path.insert(0, str(ROOT / "src"))

from schema4_cli import main

if __name__ == "__main__":
    raise SystemExit(main())
