1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2024-11-26 19:27:41 +00:00
plateforme-tfjm2/draw/routing.py
Emmy D'Anello 0c80385958
Use a unique socket for the drawing system
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
2023-05-11 17:07:53 +02:00

11 lines
216 B
Python

# Copyright (C) 2023 by Animath
# SPDX-License-Identifier: GPL-3.0-or-later
from django.urls import path
from . import consumers
websocket_urlpatterns = [
path("ws/draw/", consumers.DrawConsumer.as_asgi()),
]