Dispatcharr/apps/proxy/urls.py
2025-08-05 21:24:41 -05:00

9 lines
No EOL
242 B
Python

from django.urls import path, include
app_name = 'proxy'
urlpatterns = [
path('ts/', include('apps.proxy.ts_proxy.urls')),
path('hls/', include('apps.proxy.hls_proxy.urls')),
path('vod/', include('apps.proxy.vod_proxy.urls')),
]