lllin000_PaperForge/paperforge/memory/__init__.py

8 lines
167 B
Python

from __future__ import annotations
from paperforge.memory.db import get_connection, get_memory_db_path
__all__ = [
"get_connection",
"get_memory_db_path",
]