Files
AIRegulation-DocAnalysis/backend/app/core/__init__.py

7 lines
187 B
Python

"""Initialize the app.core package."""
from .config import settings, Settings
# Keep package boundaries explicit so backend imports stay predictable.
__all__ = ["settings", "Settings"]