learn-hf-spaces / app_docker.py
andreaschandra's picture
add docker
4ceee4a
raw
history blame
95 Bytes
from fastapi import FastAPI
app = FastAPI()
def read_root():
return {"Hello": "World!"}