mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-11-30 00:53:02 +00:00
b9ce4c737c
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
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()),
|
|
]
|