curemind / server /test.py
Alishba Siddique
feat: production deployment setup for HF Spaces
e2640ca
Raw
History Blame Contribute Delete
112 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def read_root():
return {"Hello": "World"}