mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-09 22:12:22 +01:00
13 lines
231 B
Python
13 lines
231 B
Python
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
app_name = 'playerapi'
|
|
|
|
urlpatterns = [
|
|
url(r'^queue', views.queue),
|
|
url(r'^play', views.play),
|
|
url(r'^next', views.next),
|
|
url(r'^analysed', views.analysed),
|
|
]
|