mirror of
https://github.com/FunnyWolf/agentic-soc-platform.git
synced 2026-08-22 13:12:56 +02:00
8 lines
147 B
Python
8 lines
147 B
Python
from django.urls import path
|
|
|
|
from .consumers import EventsConsumer
|
|
|
|
websocket_urlpatterns = [
|
|
path("ws/events/", EventsConsumer.as_asgi()),
|
|
]
|