15 lines
301 B
Python
15 lines
301 B
Python
"""Initialize the app package."""
|
|
# Keep package boundaries explicit so backend imports stay predictable.
|
|
|
|
|
|
__all__ = ["app"]
|
|
|
|
|
|
def __getattr__(name: str):
|
|
"""Handle getattr for this module."""
|
|
if name == "app":
|
|
from .main import app
|
|
|
|
return app
|
|
raise AttributeError(name)
|