digitaleagenturnc/users/routing.py

8 lines
224 B
Python

from django.urls import re_path
from . import mainwebsocket
websocket_urlpatterns = [
re_path(r'ws/chat/(?P<creator>\w+)/(?P<single>\w+)/$', mainwebsocket.UsersChat),
re_path('ws/', mainwebsocket.UsersConsumer),
]