mirror of
https://github.com/MarcZierle/photo-log-backend.git
synced 2025-01-04 05:37:58 +00:00
9 lines
210 B
Python
9 lines
210 B
Python
from django.urls import re_path
|
|
|
|
from . import consumers
|
|
|
|
websocket_urlpatterns = [
|
|
# change this for handling multiple users
|
|
re_path(r'ws/notifications/', consumers.NotificationsConsumer.as_asgi()),
|
|
]
|