from django.urls import re_path
from . import mainwebsocket
websocket_urlpatterns = [
re_path(r'', mainwebsocket.UsersConsumer),
]