rayhane123's picture
Upload app.py
477f66c verified
raw
history blame contribute delete
126 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def home():
return {"message": "Hello, Hugging Face!"}