1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2024-11-30 03:33:03 +00:00
plateforme-tfjm2/draw/routing.py

8 lines
159 B
Python
Raw Normal View History

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