7 lines
187 B
Python
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"] |