10 lines
267 B
Python
10 lines
267 B
Python
from fastapi import APIRouter
|
|
from routes import route_test, route_command
|
|
|
|
|
|
|
|
api_router = APIRouter()
|
|
|
|
api_router.include_router(route_test.router, prefix="/test", tags=["tests"])
|
|
api_router.include_router(route_command.router, prefix="/command", tags=["commands"])
|