vpn integration

This commit is contained in:
2026-04-11 22:07:59 +02:00
parent c4d27e9842
commit 00ac38d126
47 changed files with 945 additions and 749 deletions
+4 -2
View File
@@ -1,12 +1,14 @@
from django.urls import path
from .views import HomeView, download_file, download_torrent, pping, flux_file
from .views import HomeView, download_file, download_torrent, flux_file, pping
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(
"download_torrent/<str:torrent_id>", download_torrent, name="download_torrent"
),
path("flux_file/<uuid:file_id>", flux_file, name="flux_file"),
]