1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-02-06 10:53:02 +00:00
Emmy D'Anello bde3758c50
First interface to start draws
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
2023-04-04 10:25:48 +02:00

15 lines
295 B
Python

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