2026-05-18 16:32:42 +08:00
|
|
|
"""Initialize the app package."""
|
|
|
|
|
# Keep package boundaries explicit so backend imports stay predictable.
|
2026-05-14 15:07:34 +08:00
|
|
|
|
2026-05-18 16:32:42 +08:00
|
|
|
|
|
|
|
|
__all__ = ["app"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def __getattr__(name: str):
|
|
|
|
|
"""Handle getattr for this module."""
|
|
|
|
|
if name == "app":
|
|
|
|
|
from .main import app
|
|
|
|
|
|
|
|
|
|
return app
|
|
|
|
|
raise AttributeError(name)
|