selfprivacy-rest-api/selfprivacy_api/utils/huey.py

9 lines
188 B
Python
Raw Normal View History

2022-08-02 19:50:16 +00:00
"""MiniHuey singleton."""
2022-08-10 23:36:36 +00:00
from huey import SqliteHuey
2022-08-02 19:50:16 +00:00
2022-08-10 23:36:36 +00:00
HUEY_DATABASE = "/etc/nixos/userdata/tasks.db"
# Singleton instance containing the huey database.
2022-08-12 21:29:18 +00:00
huey = SqliteHuey(HUEY_DATABASE)