from django.urls import path from .consumers import ClassroomConsumer websocket_urlpatterns = [ path('ws/classroom/', ClassroomConsumer.as_asgi()), ]