mirror of
https://github.com/evraz-hack/backend.git
synced 2024-11-25 02:23:46 +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()),
|
||
|
]
|