summaryrefslogtreecommitdiffstats
path: root/chat/routing.py
blob: 0de511e7bed7ad94cb4e739dca4eddc035b988d0 (plain)
1
2
3
4
5
6
7
from django.urls import re_path, path

from . import consumers

websocket_urlpatterns = [
    path("ws/chat/<str:room_name>/", consumers.ChatConsumer.as_asgi()),
]