8 lines
222 B
Python
8 lines
222 B
Python
"""Initialize the app.config package."""
|
|
|
|
from .settings import Settings, get_settings, settings
|
|
# Keep package boundaries explicit so backend imports stay predictable.
|
|
|
|
|
|
__all__ = ["Settings", "get_settings", "settings"]
|