mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
backend: CHANGE Name and Description of a FastAPI APP
This commit is contained in:
parent
9e9142a579
commit
8adb85887f
1 changed files with 4 additions and 1 deletions
|
@ -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(profile.router, prefix="/profile", tags=["Profile"])
|
||||||
app.include_router(auth.router, prefix="/auth", tags=["Profile"])
|
app.include_router(auth.router, prefix="/auth", tags=["Profile"])
|
||||||
|
|
Loading…
Add table
Reference in a new issue