7 lines
215 B
Python
7 lines
215 B
Python
|
|
"""Sovereign orchestration — Huey replaces 3,843 lines of homebrew."""
|
||
|
|
|
||
|
|
from huey import SqliteHuey, crontab
|
||
|
|
from pathlib import Path
|
||
|
|
|
||
|
|
huey = SqliteHuey(filename=str(Path.home() / ".hermes" / "orchestration.db"))
|