11 lines
197 B
Python
11 lines
197 B
Python
from django.urls import path
|
|
|
|
from .consumers import BoardConsumer
|
|
|
|
websocket_urlpatterns = [
|
|
path(
|
|
"ws/v1/toolbox/boards/<uuid:session_id>/",
|
|
BoardConsumer.as_asgi(),
|
|
),
|
|
]
|