from django.urls import path from .consumers import MatchConsumer websocket_urlpatterns = [ path("ws/v1/contest/matches//", MatchConsumer.as_asgi()), ]