protexa / space_worker /http.py
admincybers2's picture
Upload folder using huggingface_hub
b0adf0e verified
Raw
History Blame Contribute Delete
205 Bytes
from fastapi import FastAPI
def create_app():
app = FastAPI()
@app.get("/")
def status():
return {"status": "supabase-worker-started-http-intentionally-unreachable"}
return app