mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-11-26 22:07:09 +00:00
ea8007aa07
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
12 lines
301 B
Python
12 lines
301 B
Python
# Copyright (C) 2024 by Animath
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import chat.consumers
|
|
from django.urls import path
|
|
import draw.consumers
|
|
|
|
websocket_urlpatterns = [
|
|
path("ws/chat/", chat.consumers.ChatConsumer.as_asgi()),
|
|
path("ws/draw/", draw.consumers.DrawConsumer.as_asgi()),
|
|
]
|