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