8 lines
312 B
Python
8 lines
312 B
Python
# #region DashboardsRouter [C:1] [TYPE Block] [SEMANTICS dashboard, api, router]
|
|
# @BRIEF Single APIRouter instance for all dashboard endpoints.
|
|
# @RELATION BINDS_TO -> [DashboardsApi]
|
|
from fastapi import APIRouter
|
|
|
|
router = APIRouter(prefix="/api/dashboards", tags=["Dashboards"])
|
|
# #endregion DashboardsRouter
|