8 lines
159 B
Python
8 lines
159 B
Python
|
from django.urls import path
|
||
|
|
||
|
from . import consumers
|
||
|
|
||
|
websocket_urlpatterns = [
|
||
|
path("ws/draw/<int:tournament_id>/", consumers.DrawConsumer.as_asgi()),
|
||
|
]
|