health-assistant / main.py
yuting111222's picture
resolve merge conflict, keep minimal FastAPI version
f9b12dd
raw
history blame contribute delete
156 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello from minimal FastAPI on Hugging Face Spaces!"}