mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 02:35:14 +00:00
11 lines
264 B
Python
11 lines
264 B
Python
from django.urls import path, include
|
|
from .views import generate_m3u
|
|
from core.views import stream_view
|
|
|
|
|
|
app_name = 'output'
|
|
|
|
urlpatterns = [
|
|
path('m3u/', generate_m3u, name='generate_m3u'),
|
|
path('stream/<int:stream_id>/', stream_view, name='stream'),
|
|
]
|