#!/usr/bin/env python3 """vol_live 모니터 HTTP 서버 — 3_run_vol_monitor.py --serve-only 래퍼.""" from __future__ import annotations import runpy import sys from pathlib import Path if __name__ == "__main__": target = Path(__file__).resolve().parent / "3_run_vol_monitor.py" sys.argv = [str(target), "--serve-only", *sys.argv[1:]] runpy.run_path(str(target), run_name="__main__")