mirror of
https://github.com/BEDOLAGA-DEV/remnawave-bedolaga-telegram-bot.git
synced 2026-02-22 20:31:47 +00:00
Revert "Fix RemnaWave routes visibility in docs"
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -32,7 +32,7 @@ from ..schemas.remnawave import (
|
||||
)
|
||||
|
||||
|
||||
router = APIRouter()
|
||||
router = APIRouter(prefix="/remnawave", tags=["remnawave"])
|
||||
|
||||
|
||||
def _ensure_service_configured(service: RemnaWaveService) -> None:
|
||||
|
||||
Reference in New Issue
Block a user