8 lines
171 B
Python
8 lines
171 B
Python
from django.urls import re_path
|
|
|
|
from backoffice.consumers import EchoConsumer
|
|
|
|
websocket_urlpatterns = [
|
|
re_path(r'^ws/backoffice/echo/$', EchoConsumer.as_asgi()),
|
|
]
|