mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 22:29:15 +02:00
9 lines
226 B
Python
9 lines
226 B
Python
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^nodeinfo/2.0/$', views.NodeInfo.as_view(), name='nodeinfo-2.0'),
|
|
url(r'^settings/$', views.InstanceSettings.as_view(), name='settings'),
|
|
]
|