From 377db9917b4c51b60ffc8043b54ceb68a2ad8fd6 Mon Sep 17 00:00:00 2001 From: Abdussamet Kocak Date: Mon, 20 Jan 2020 21:55:37 +0300 Subject: [PATCH] Add app info --- app/app.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/app.py b/app/app.py index 517a52d..2644618 100644 --- a/app/app.py +++ b/app/app.py @@ -4,7 +4,9 @@ from starlette.requests import Request from app.api import api as api_router -app = FastAPI() +app = FastAPI(title='prayertimes', + version='1.0.0', + description='An API for fetching islamic prayer times from Presidency of Religious Affairs of Turkey') app.include_router(api_router, prefix='/api')