bart-test / app /main.py
epochshik's picture
.
fe4e244
raw
history blame
128 Bytes
print("Hello")
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def read_root():
return {"Hello": "World"}