7 lines
140 B
Python
7 lines
140 B
Python
from django.urls import path
|
|
from .consumers import ChatConsumer
|
|
|
|
websocket_urlpatterns = [
|
|
path("ws/chat/", ChatConsumer.as_asgi()),
|
|
]
|