Files
pablo 393b39cacd
CI / test (push) Successful in 1m56s
CI / build (push) Successful in 48s
feat: websockets
2026-07-31 14:27:50 +02:00

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()),
]