from django.urls import path from .consumers import * websocket_urlpatterns = [ path("ws/ticketroom//", TicketRoomConsumer.as_asgi()), ]