feat: add collaborative math board and draw guess mode

This commit is contained in:
2026-08-10 00:47:03 +08:00
parent 40e9462842
commit b8916180a9
16 changed files with 890 additions and 36 deletions
+10
View File
@@ -0,0 +1,10 @@
from django.urls import path
from .consumers import BoardConsumer
websocket_urlpatterns = [
path(
"ws/v1/toolbox/boards/<uuid:session_id>/",
BoardConsumer.as_asgi(),
),
]