chore: add unit test for router and implement command router
ref: N25B-205
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
from fastapi.routing import APIRouter
|
||||
|
||||
from control_backend.api.v1.endpoints import message, sse
|
||||
from control_backend.api.v1.endpoints import message, sse, command
|
||||
|
||||
api_router = APIRouter()
|
||||
|
||||
@@ -12,4 +12,9 @@ api_router.include_router(
|
||||
api_router.include_router(
|
||||
sse.router,
|
||||
tags=["SSE"]
|
||||
)
|
||||
|
||||
api_router.include_router(
|
||||
command.router,
|
||||
tags=["Commands"]
|
||||
)
|
||||
Reference in New Issue
Block a user