Files
snippet-manager/snip/db/__init__.py
7000pctAUTO 793a55f103
Some checks failed
CI / test (push) Failing after 12s
Fix snip/db/__init__.py - add missing get_database export
2026-03-22 11:40:22 +00:00

5 lines
128 B
Python

"""Database module for snippet manager."""
from .database import Database, get_database
__all__ = ["Database", "get_database"]