mirror of
https://github.com/kvcache-ai/ktransformers.git
synced 2025-09-06 04:30:03 +00:00
6 lines
134 B
Python
6 lines
134 B
Python
from fastapi import APIRouter
|
|
from .system import router as system_router
|
|
|
|
|
|
router = APIRouter()
|
|
router.include_router(system_router)
|