mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-09 19:52:20 +01:00
13 lines
227 B
Python
13 lines
227 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "playerapi"
|
|
|
|
urlpatterns = [
|
|
path("queue/", views.queue),
|
|
path("play/", views.play),
|
|
path("next/", views.next),
|
|
path("analysed/", views.analysed),
|
|
]
|