mirror of
https://github.com/Alexander-D-Karpov/akarpov
synced 2024-11-11 01:16:33 +03:00
10 lines
313 B
Python
10 lines
313 B
Python
from django.urls import re_path
|
|
|
|
from akarpov.music.consumers import RadioConsumer
|
|
from akarpov.notifications.providers.site.consumers import NotificationsConsumer
|
|
|
|
websocket_urlpatterns = [
|
|
re_path(r"ws/radio/", RadioConsumer.as_asgi()),
|
|
re_path(r"ws/notifications/", NotificationsConsumer.as_asgi()),
|
|
]
|