9 lines
174 B
Python
9 lines
174 B
Python
from django.urls import path
|
|
|
|
from .consumers import MatchConsumer
|
|
|
|
|
|
websocket_urlpatterns = [
|
|
path("ws/v1/contest/matches/<uuid:match_id>/", MatchConsumer.as_asgi()),
|
|
]
|