JLD's picture
Add initial state of files
bbd1d36
raw
history blame
No virus
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}