10 lines
238 B
Python
10 lines
238 B
Python
"""
|
|
WebSocket routing configuration for collaboration_war_rooms
|
|
"""
|
|
from django.urls import re_path
|
|
from . import consumers
|
|
|
|
websocket_urlpatterns = [
|
|
re_path(r'ws/chat/(?P<room_id>[0-9a-f-]+)/$', consumers.ChatConsumer.as_asgi()),
|
|
]
|