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.
|
from fastapi import APIRouter
|
|
|
|
from .chat import chat_router
|
|
from .v1 import v1_router
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(v1_router, prefix="/v1")
|
|
api_router.include_router(chat_router, prefix="")
|
|
|
|
|
|
__all__ = ["api_router"]
|
|
|