File size: 107 Bytes
3ed8626
 
f146db9
3ed8626
f146db9
3ed8626
46bd13a
1
2
3
4
5
6
7
from fastapi import FastAPI

app = FastAPI()

@app.get("/")
def root():
    return {"Hello": "World"}