mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-09 23:12:21 +01:00
12 lines
192 B
Python
12 lines
192 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),
|
|
]
|