mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 02:35:14 +00:00
6 lines
160 B
Python
6 lines
160 B
Python
from django.urls import path
|
|
from dispatcharr.consumers import MyWebSocketConsumer
|
|
|
|
websocket_urlpatterns = [
|
|
path("ws/", MyWebSocketConsumer.as_asgi()),
|
|
]
|