mirror of
https://github.com/Alexander-D-Karpov/akarpov
synced 2024-11-22 07:26:33 +03:00
8 lines
164 B
Python
8 lines
164 B
Python
from django.urls import re_path
|
|
|
|
from akarpov.music.consumers import RadioConsumer
|
|
|
|
websocket_urlpatterns = [
|
|
re_path(r"ws/radio/", RadioConsumer.as_asgi()),
|
|
]
|