11 lines
376 B
Python
11 lines
376 B
Python
#!/usr/bin/env python3
|
|
"""Compatibility shim for Hermes cron script hook.
|
|
Real logic lives in the CoinHunter skill.
|
|
Copy this file to ~/.hermes/scripts/coinhunter_precheck.py if needed.
|
|
"""
|
|
import runpy
|
|
from pathlib import Path
|
|
|
|
TARGET = Path.home() / ".hermes" / "skills" / "coinhunter" / "scripts" / "coinhunter_precheck.py"
|
|
runpy.run_path(str(TARGET), run_name="__main__")
|