16 lines
440 B
Python
16 lines
440 B
Python
from fastapi.routing import APIRouter
|
|
|
|
from control_backend.api.v1.endpoints import command, logs, message, program, sse
|
|
|
|
api_router = APIRouter()
|
|
|
|
api_router.include_router(message.router, tags=["Messages"])
|
|
|
|
api_router.include_router(sse.router, tags=["SSE"])
|
|
|
|
api_router.include_router(command.router, tags=["Commands"])
|
|
|
|
api_router.include_router(logs.router, tags=["Logs"])
|
|
|
|
api_router.include_router(program.router, tags=["Program"])
|