cbensimon's picture
cbensimon HF staff
Create app.py
c2f31df
raw
history blame
117 Bytes
"""
"""
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}