mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-11-26 15:27:11 +00:00
0c80385958
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
11 lines
216 B
Python
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()),
|
|
]
|