rayhane
Fix deployment
8b3885d
raw
history blame
118 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def home():
return {"message": "Hello, Huging Face!"}