feat: unify card runtime and event-driven web ui
Some checks failed
CI / Backend Checks (push) Failing after 36s
CI / Frontend Checks (push) Failing after 40s

This commit is contained in:
kacper 2026-04-06 15:42:53 -04:00
parent 0edf8c3fef
commit 4dfb7ca3cc
105 changed files with 17382 additions and 8505 deletions

19
routes/__init__.py Normal file
View file

@ -0,0 +1,19 @@
from .cards import router as cards_router
from .inbox import router as inbox_router
from .messages import router as messages_router
from .rtc import router as rtc_router
from .sessions import router as sessions_router
from .templates import router as templates_router
from .tools import router as tools_router
from .workbench import router as workbench_router
__all__ = [
"cards_router",
"inbox_router",
"messages_router",
"rtc_router",
"sessions_router",
"templates_router",
"tools_router",
"workbench_router",
]