Патч
All checks were successful
Build And Push / publish (push) Successful in 5m5s

This commit is contained in:
2025-11-11 12:58:58 +03:00
parent b602b75234
commit cf1324633d
9 changed files with 82 additions and 45 deletions

View File

@ -1,6 +1,7 @@
from fastapi import APIRouter, HTTPException
from apps.esia.v1.router import router as esia_router
from apps.remd.v1.router import router as remd_router
from apps.users.v1.router import router as users_router
from . import get_openapi_schema, get_swagger_html
@ -9,6 +10,7 @@ router = APIRouter(prefix='/v1')
router.include_router(esia_router)
router.include_router(users_router)
router.include_router(remd_router)
openapi_schema = get_openapi_schema(router)
swagger_ui_html = get_swagger_html(router)