mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-07-17 16:50:53 +00:00
9 lines
245 B
Python
9 lines
245 B
Python
from django.urls import path, include
|
|
|
|
app_name = 'proxy'
|
|
|
|
urlpatterns = [
|
|
path('ts/', include('apps.proxy.live_proxy.urls')),
|
|
path('hls/', include('apps.proxy.hls_proxy.urls')),
|
|
path('vod/', include('apps.proxy.vod_proxy.urls')),
|
|
]
|