Files
account_store/ChatServiceApp/websocket_urls.py
SDE a5362bd2ad 0.3.4
chat v3
2023-08-13 13:25:21 +03:00

8 lines
223 B
Python

from django.urls import re_path
from .websocket_views import *
websocket_urlpatterns = [
re_path(r'ws/socket-server/', ChatConsumer.as_asgi()),
# re_path(r'ws/chat/(?P<room_name>\w+)/$', consumers.ChatConsumer),
]