backend: set api prefix to /api/

This commit is contained in:
Kentai Radiquum 2024-04-19 02:30:14 +05:00
parent 8adb85887f
commit cd78429540
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -33,16 +33,18 @@ TAGS = [
app = FastAPI(
openapi_tags=TAGS,
title="AniX API",
description="unofficial API proxy for Anixart android application.",)
description="unofficial API proxy for Anixart android application.",
openapi_url="/api/openapi.json",
docs_url="/api/docs", redoc_url=None)
app.include_router(profile.router, prefix="/profile", tags=["Profile"])
app.include_router(auth.router, prefix="/auth", tags=["Profile"])
app.include_router(profile.router, prefix="/api/profile", tags=["Profile"])
app.include_router(auth.router, prefix="/api/auth", tags=["Profile"])
app.include_router(release.router, prefix="/release", tags=["Releases"])
app.include_router(release.router, prefix="/api/release", tags=["Releases"])
app.include_router(index.router, prefix="/index", tags=["Index"])
app.include_router(favorites.router, prefix="/favorites", tags=["Favorites"])
app.include_router(search.router, prefix="/search", tags=["Search"])
app.include_router(index.router, prefix="/api/index", tags=["Index"])
app.include_router(favorites.router, prefix="/api/favorites", tags=["Favorites"])
app.include_router(search.router, prefix="/api/search", tags=["Search"])
if __name__ == "__main__":
uvicorn.run("main:app", host="0.0.0.0", port=8000)