second commit

This commit is contained in:
2026-04-13 23:14:05 +02:00
parent 1c031ebf63
commit e08597fc72
125 changed files with 26221 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#
# routing.py
from django.urls import re_path
from django.conf import settings
from . import consumers
urla = settings.SCANNER_WEBSOCKET_ROUTE
urlb = settings.REPLAY_WEBSOCKET_ROUTE
websocket_urlpatterns = [
re_path(urla, consumers.ScannerConsumer.as_asgi()),
re_path(urlb, consumers.ReplayConsumer.as_asgi()),
]