connect / notification /routing.py
thejagstudio's picture
Add notification app with initial models, views, and admin configuration; remove unused image files
d5374bf
raw
history blame
161 Bytes
from django.urls import re_path
from . import consumers
websocket_urlpatterns = [
re_path(r'ws/notification/$', consumers.NotificationConsumer.as_asgi()),
]