testDocker / app.py
NameIsJACK's picture
testing secrets
b432a1e
raw
history blame
136 Bytes
from fastapi import FastAPI
from config import settings
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}