From 8adb85887f39423725fc36a079a6760b312aa4d7 Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Thu, 18 Apr 2024 23:07:28 +0500 Subject: [PATCH] backend: CHANGE Name and Description of a FastAPI APP --- backend/main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/backend/main.py b/backend/main.py index a694361..d9e89c6 100644 --- a/backend/main.py +++ b/backend/main.py @@ -30,7 +30,10 @@ TAGS = [ }, ] -app = FastAPI() +app = FastAPI( + openapi_tags=TAGS, + title="AniX API", + description="unofficial API proxy for Anixart android application.",) app.include_router(profile.router, prefix="/profile", tags=["Profile"]) app.include_router(auth.router, prefix="/auth", tags=["Profile"])