mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-18 08:33:41 +00:00
13 lines
259 B
Python
13 lines
259 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
URLs for the Transmission module.
|
|
"""
|
|
|
|
from django.conf.urls import url
|
|
|
|
from .views import TransmissionAppView
|
|
|
|
urlpatterns = [
|
|
url(r'^apps/transmission/$', TransmissionAppView.as_view(), name='index'),
|
|
]
|