7 lines
169 B
Python
7 lines
169 B
Python
from django.urls import path
|
|
|
|
from notifications.services.ws import WSNotification
|
|
|
|
websocket_urlpatterns = [
|
|
path('ws/notifications/', WSNotification.as_asgi()),
|
|
]
|