docker_test / main.py
akh1r0ck
[update] docs url
c0901d8
raw
history blame
202 Bytes
from fastapi import FastAPI
app = FastAPI(
openapi_url="/api/v1/docker_test/openapi.json",
docs_url="/api/v1/docker_test/docs"
)
@app.get("/")
def read_root():
return {"Hello": "World!"}