Files
WerkoutAPI/video/urls.py
2024-06-23 22:51:58 -05:00

9 lines
279 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('nsfw_videos/', views.nsfw_videos, name='nsfw videos'),
path('create_hls/', views.create_hls, name='create hls video streaming'),
# path('hls_video/', views.hls_videos, name='hls video streaming')
]