Revert "Fix RemnaWave routes visibility in docs"

This commit is contained in:
Egor
2025-09-28 05:08:08 +03:00
committed by GitHub
parent f53b04444b
commit 07a0d0ca43
2 changed files with 2 additions and 2 deletions

View File

@@ -53,6 +53,6 @@ def create_web_api_app() -> FastAPI:
app.include_router(transactions.router, prefix="/transactions", tags=["transactions"])
app.include_router(promo_groups.router, prefix="/promo-groups", tags=["promo-groups"])
app.include_router(tokens.router, prefix="/tokens", tags=["auth"])
app.include_router(remnawave.router, prefix="/remnawave", tags=["remnawave"])
app.include_router(remnawave.router)
return app

View File

@@ -32,7 +32,7 @@ from ..schemas.remnawave import (
)
router = APIRouter()
router = APIRouter(prefix="/remnawave", tags=["remnawave"])
def _ensure_service_configured(service: RemnaWaveService) -> None: