""" server.py — thin re-export shim. The canonical app definition lives in server/app.py. This file exists for tooling that does `from server import app` when the server/ package is not on sys.path, and as a standalone entry point. """ # Re-export app from the canonical location from server.app import app # noqa: F401 __all__ = ["app"]