369fac9
1
2
3
4
5
6
7
8
from django.urls import path, include from . import views urlpatterns = [ path("", views.api, name="api"), path("video/", include("stream_video.urls")), ]