Spaces:
Sleeping
Sleeping
from fastapi import FastAPI | |
app = FastAPI( | |
openapi_url="/api/v1/docker_test/openapi.json", | |
docs_url="/api/v1/docker_test/docs" | |
) | |
def read_root(): | |
return {"Hello": "World!"} | |