13 lines
473 B
Python
13 lines
473 B
Python
from django.urls import path
|
|
|
|
from .views import HomeView, download_file, download_torrent, pping, flux_file
|
|
|
|
app_name = "torrent"
|
|
urlpatterns = [
|
|
path("", HomeView.as_view(), name="home"),
|
|
path("pping/", pping, name="pping"),
|
|
path("download_file/<uuid:file_id>", download_file, name="download_file"),
|
|
path("download_torrent/<str:torrent_id>", download_torrent, name="download_torrent"),
|
|
path("flux_file/<uuid:file_id>", flux_file, name="flux_file"),
|
|
]
|