File size: 202 Bytes
b9ff1f0
 
c0901d8
 
 
 
b9ff1f0
 
 
c0901d8
 
1
2
3
4
5
6
7
8
9
10
11
12
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!"}