hxf/backend/th_agenter/db/__init__.py

6 lines
140 B
Python

"""Database module for TH-Agenter."""
from .database import get_db, init_db
from .base import Base
__all__ = ["get_db", "init_db", "Base"]