#!/usr/bin/env python3 """05단계: WLD 실시간 모니터 루프.""" import runpy from pathlib import Path runpy.run_path(str(Path(__file__).resolve().parent / "_bootstrap.py")) from deepcoin.ops.monitor_coin import MonitorCoin if __name__ == "__main__": MonitorCoin(cooldown_file=None).run_schedule()