1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2024-11-30 06:53:02 +00:00
plateforme-tfjm2/tfjm/routing.py

12 lines
301 B
Python
Raw Normal View History

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