mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-11-30 03:33:03 +00:00
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()),
|
||
|
]
|