osnova-api-alert/routers/__init__.py

15 lines
225 B
Python
Raw Normal View History

2024-10-08 11:26:04 +00:00
from fastapi import APIRouter
from .swagger import router as swagger_router
from config import conf
router = APIRouter()
router.include_router(
swagger_router,
prefix=conf.prefix.swagger,
tags=["Swagger"],
)