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

from . import consumers

websocket_urlpatterns = [
    re_path(r"ws/chat/(?P<room_name>\w+)/$", consumers.ChatConsumer.as_asgi()),
]