mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 23:39:16 +02:00
7 lines
149 B
Python
7 lines
149 B
Python
from django.conf.urls import url
|
|
from . import views
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^settings/$', views.InstanceSettings.as_view(), name='settings'),
|
|
]
|