关闭 docs
app = FastAPI(docs_url=None)
关闭 redoc
app = FastAPI(redoc_url=None)
两个都关闭
app = FastAPI(docs_url=None, redoc_url=None)
include_in_schema=False
@router.api_route("/", methods=["GET", "POST"],tags=["cordyceps"],response_class=HTMLResponse,include_in_schema=False)