File size: 157 Bytes
ec17867
 
 
f18f8a4
e133457
 
1
2
3
4
5
6
from fastapi import FastAPI

app = FastAPI()
@app.get("/")
async def read_root():
    return {"message": "Welcome to my FastAPI deployment on Hugging Face!"}