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