backend: CHANGE Name and Description of a FastAPI APP

This commit is contained in:
Kentai Radiquum 2024-04-18 23:07:28 +05:00
parent 9e9142a579
commit 8adb85887f
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -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"])