Ai-prject / app.py
ikraamkb's picture
Create app.py
4795656 verified
raw
history blame contribute delete
130 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def home():
return {"message": "Hello, FastAPI on Hugging Face!"}