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

from . import consumers

websocket_urlpatterns = [
    re_path(r'ws/chat', consumers.ChatConsumer.as_asgi()),
]