test-fastapi / app.py
traversaal-ai's picture
Update app.py
f18f8a4 verified
raw
history blame
157 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def read_root():
return {"message": "Welcome to my FastAPI deployment on Hugging Face!"}