mirror of
https://github.com/evraz-hack/backend.git
synced 2025-02-22 20:20:32 +03:00
8 lines
226 B
Python
8 lines
226 B
Python
from . import consumers
|
|
from django.urls import path
|
|
|
|
websocket_urlpatterns = [
|
|
path("", consumers.NotificationsConsumer.as_asgi()),
|
|
path("<int:approximation>", consumers.NotificationsApproximateConsumer.as_asgi()),
|
|
]
|