9 lines
162 B
Python
9 lines
162 B
Python
|
from django.urls import path
|
||
|
|
||
|
from .consumers import NotifyConsumer
|
||
|
|
||
|
websocket_urlpatterns = [
|
||
|
path('notify/<str:event_slug>/', NotifyConsumer.as_asgi()),
|
||
|
]
|
||
|
|