gpt_chat_bot/app/routers.py
Dmitry Afanasyev a95403f594
Feat/fix start (#1)
format code
2023-09-16 20:09:40 +03:00

11 lines
318 B
Python

from fastapi import APIRouter
from fastapi.responses import ORJSONResponse
from app.api.system.controllers import router as system_router
from app.constants import API_PREFIX
api_router = APIRouter(prefix=API_PREFIX, default_response_class=ORJSONResponse)
api_router.include_router(system_router, tags=["system"])