mirror of
https://github.com/Hopiu/django-embed-video.git
synced 2026-04-13 09:41:00 +00:00
7 lines
234 B
Python
7 lines
234 B
Python
from django.conf import settings
|
|
|
|
EMBED_VIDEO_BACKENDS = getattr(settings, 'EMBED_VIDEO_BACKENDS', (
|
|
'embed_video.backends.YoutubeBackend',
|
|
'embed_video.backends.VimeoBackend',
|
|
'embed_video.backends.SoundCloudBackend',
|
|
))
|