1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-22 21:58:25 +02:00
Files
plateforme-tfjm2/chat/urls.py
Emmy D'Anello 06c82a239d Initialize chat interface
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
2024-04-27 08:57:01 +02:00

14 lines
221 B
Python

# Copyright (C) 2024 by Animath
# SPDX-License-Identifier: GPL-3.0-or-later
from django.urls import path
from .views import ChatView
app_name = 'chat'
urlpatterns = [
path('', ChatView.as_view(), name='chat'),
]