pose / web /server /api /urls.py
amitesh11's picture
Upload 3019 files
369fac9 verified
raw
history blame
No virus
164 Bytes
from django.urls import path, include
from . import views
urlpatterns = [
path("", views.api, name="api"),
path("video/", include("stream_video.urls")),
]