mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 02:35:14 +00:00
6 lines
127 B
Python
6 lines
127 B
Python
from django.urls import path
|
|
from .views import settings_view
|
|
|
|
urlpatterns = [
|
|
path('', settings_view, name='settings'),
|
|
]
|