Files
qivip/core/chat/routing.py
2025-03-15 12:35:32 +01:00

8 lines
183 B
Python

# chat/routing.py
from django.urls import re_path
from . import consumers
websocket_urlpatterns = [
re_path(r"ws/chat/(?P<room_name>\w+)/$", consumers.ChatConsumer.as_asgi()),
]