refactor(dashboard): split api.py into handler modules

This commit is contained in:
2026-04-21 07:11:41 +00:00
parent af444d7066
commit b00d9d6fbd
12 changed files with 2245 additions and 2510 deletions

View File

@@ -0,0 +1,7 @@
"""Handler mixin modules for the Echo Task Board API.
Each module exposes a mixin class whose methods plug into
`TaskBoardHandler` (defined in dashboard/api.py). This keeps
api.py as a thin HTTP router while each concern lives in its
own small module.
"""