From cf955441074f1db5b822d4cea1e12fe609acc1ef Mon Sep 17 00:00:00 2001 From: grillazz Date: Mon, 1 Nov 2021 13:09:27 +0100 Subject: [PATCH] update dependencies and refactor stuff api --- the_app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/the_app/main.py b/the_app/main.py index ef0954c..2d4faa8 100644 --- a/the_app/main.py +++ b/the_app/main.py @@ -8,7 +8,7 @@ from the_app.utils import get_logger logger = get_logger(__name__) -app = FastAPI(title="Stuff And Nonsense", version="0.2") +app = FastAPI(title="Stuff And Nonsense API", version="0.3") app.include_router(stuff_router) app.include_router(nonsense_router)