7 lines
159 B
Python
7 lines
159 B
Python
# api/routing.py
|
|
from django.urls import path
|
|
from . import consumers
|
|
|
|
websocket_urlpatterns= [
|
|
path("ws/freqsplit/", consumers.MediaConsumer.as_asgi()),
|
|
] |