mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-29 15:31:28 +00:00
9 lines
188 B
Python
9 lines
188 B
Python
"""MiniHuey singleton."""
|
|
from huey import SqliteHuey
|
|
|
|
HUEY_DATABASE = "/etc/nixos/userdata/tasks.db"
|
|
|
|
# Singleton instance containing the huey database.
|
|
|
|
huey = SqliteHuey(HUEY_DATABASE)
|