mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-02-06 15:33:03 +00:00
14 lines
214 B
Python
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()),
|
||
|
]
|