2026-05-18 16:32:42 +08:00
|
|
|
"""Initialize the app.config package."""
|
2026-05-14 15:07:34 +08:00
|
|
|
|
|
|
|
|
from .settings import Settings, get_settings, settings
|
2026-05-18 16:32:42 +08:00
|
|
|
# Keep package boundaries explicit so backend imports stay predictable.
|
|
|
|
|
|
2026-05-14 15:07:34 +08:00
|
|
|
|
|
|
|
|
__all__ = ["Settings", "get_settings", "settings"]
|