mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-02-06 08:13:04 +00:00
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()),
|
|
]
|