mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-25 09:21:10 +00:00
13 lines
234 B
Python
13 lines
234 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
URLs for the Deluge module.
|
|
"""
|
|
|
|
from django.conf.urls import url
|
|
|
|
from .views import DelugeAppView
|
|
|
|
urlpatterns = [
|
|
url(r'^apps/deluge/$', DelugeAppView.as_view(), name='index')
|
|
]
|