CineDev's picture
Ui and backend changes
40d8168
Raw
History Blame Contribute Delete
190 Bytes
from django.urls import re_path
from .consumers import LiveInterviewConsumer
websocket_urlpatterns = [
re_path(r'ws/interview/(?P<room_id>[^/]+)/$', LiveInterviewConsumer.as_asgi()),
]