Files
aiagent/backend/app/core/__init__.py
2026-01-19 00:09:36 +08:00

6 lines
137 B
Python

# Core package
from app.core.config import settings
from app.core.database import get_db, Base
__all__ = ["settings", "get_db", "Base"]