1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-07-04 19:44:07 +02:00
Files
plateforme-tfjm2/draw/urls.py
Emmy D'Anello c7d7f6d714 Init new draw application
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
2023-03-31 18:28:40 +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()),
]