You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
236 B
9 lines
236 B
from fastapi import APIRouter
|
|
from core.settings import settings
|
|
from .api_v1 import router as v1_router
|
|
router = APIRouter(
|
|
prefix= settings.api.prefix,
|
|
tags=["Основной роутер"]
|
|
)
|
|
|
|
router.include_router(v1_router)
|