Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
randomshit11
/
yoga
like
0
Configuration error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
yoga
/
web
/
server
/
api
/
urls.py
randomshit11
Upload 167 files
97e3689
verified
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
164 Bytes
from
django.urls
import
path, include
from
.
import
views
urlpatterns = [
path(
""
, views.api, name=
"api"
),
path(
"video/"
, include(
"stream_video.urls"
)),
]