""" server package — re-exports FastAPI app from server.app so that `from server import app` resolves to the FastAPI application instance. """ from server.app import app # noqa: F401 __all__ = ["app"]