9 lines
247 B
Python
9 lines
247 B
Python
from django.urls import re_path, path
|
|
|
|
from . import consumers
|
|
|
|
websocket_urlpatterns = [
|
|
path("ws/chat/<str:room_name>/<str:user>", consumers.ChatConsumer.as_asgi()),
|
|
# path("ws/chat/<str:room_name>", consumers.ChatConsumer.as_asgi()),
|
|
]
|