Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
amitesh11
/
pose
like
0
Runtime error
App
Files
Files
Community
369fac9
pose
/
web
/
server
/
api
/
urls.py
amitesh11
Upload 3019 files
369fac9
verified
10 months ago
raw
Copy download link
history
blame
Safe
164 Bytes
from
django.urls
import
path, include
from
.
import
views
urlpatterns = [
path(
""
, views.api, name=
"api"
),
path(
"video/"
, include(
"stream_video.urls"
)),
]