mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-07-18 00:55:50 +00:00
12 lines
343 B
Python
12 lines
343 B
Python
from django.urls import include, path
|
|
|
|
from . import views
|
|
|
|
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')),
|
|
path('library/<str:token>/', views.library_stream, name='library-stream'),
|
|
]
|