from fastapi import FastAPI def create_app(): app = FastAPI() @app.get("/") def status(): return {"status": "supabase-worker-started-http-intentionally-unreachable"} return app