learn-hf-spaces / app_docker.py
andreaschandra's picture
fix: route fastapi
0021b8e
raw
history blame contribute delete
109 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}