#!/usr/bin/env python3 from __future__ import annotations import argparse import json import sys from pathlib import Path ROOT = Path(__file__).resolve().parents[1] if str(ROOT) not in sys.path: sys.path.insert(0, str(ROOT)) from src.quant_engine.tools_support.gas_business_logic_audit import write_audit def main() -> int: ap = argparse.ArgumentParser() ap.add_argument("--out", default=str(ROOT / "Temp" / "gas_business_logic_audit_v1.json")) args = ap.parse_args() out = Path(args.out) result = write_audit(out) print(__import__("json").dumps(result, ensure_ascii=False, indent=2)) return 0 if result["gate"] == "PASS" else 1 if __name__ == "__main__": raise SystemExit(main())