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