1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2024-11-30 00:53:02 +00:00
plateforme-tfjm2/draw/routing.py
Emmy D'Anello b9ce4c737c
First play with websockets
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
2023-04-04 10:25:47 +02:00

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()),
]