feat: unify card runtime and event-driven web ui
This commit is contained in:
parent
0edf8c3fef
commit
4dfb7ca3cc
105 changed files with 17382 additions and 8505 deletions
19
routes/__init__.py
Normal file
19
routes/__init__.py
Normal 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",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue