From 9bdc7880787c3a5d3309a849ac4929ab83945624 Mon Sep 17 00:00:00 2001 From: profitroll Date: Thu, 22 Jun 2023 14:01:12 +0200 Subject: [PATCH] Updated to v0.3 --- modules/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/app.py b/modules/app.py index 0117169..43f6bfb 100644 --- a/modules/app.py +++ b/modules/app.py @@ -1,7 +1,7 @@ from fastapi import FastAPI from fastapi.openapi.docs import get_redoc_html, get_swagger_ui_html -app = FastAPI(title="END PLAY Photos", docs_url=None, redoc_url=None, version="0.2") +app = FastAPI(title="END PLAY Photos", docs_url=None, redoc_url=None, version="0.3") @app.get("/docs", include_in_schema=False)