mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 10:45:27 +00:00
9 lines
No EOL
242 B
Python
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')),
|
|
] |