feat: websockets
CI / test (push) Successful in 1m56s
CI / build (push) Successful in 48s

This commit is contained in:
2026-07-31 14:27:50 +02:00
parent 125c9dd186
commit 393b39cacd
13 changed files with 626 additions and 2 deletions
+7
View File
@@ -0,0 +1,7 @@
from django.urls import re_path
from backoffice.consumers import EchoConsumer
websocket_urlpatterns = [
re_path(r'^ws/backoffice/echo/$', EchoConsumer.as_asgi()),
]