File size: 136 Bytes
f44d44d
b432a1e
f44d44d
 
 
 
 
1
2
3
4
5
6
7
8
from fastapi import FastAPI
from config import settings
app = FastAPI()

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