gpt_chat_bot/app/routers.py
2023-05-01 02:37:14 +03:00

5 lines
153 B
Python

from fastapi import APIRouter
from fastapi.responses import ORJSONResponse
api_router = APIRouter(prefix="/api", default_response_class=ORJSONResponse)