1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-02-06 10:13:02 +00:00
Emmy D'Anello 7364d27b4b
Init new draw application
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
2023-04-04 10:25:47 +02:00

14 lines
214 B
Python

# Copyright (C) 2023 by Animath
# SPDX-License-Identifier: GPL-3.0-or-later
from django.urls import path
from .views import DisplayView
app_name = "draw"
urlpatterns = [
path('', DisplayView.as_view()),
]