mirror of
https://github.com/meeb/tubesync.git
synced 2025-06-19 19:46:37 +00:00
10 lines
229 B
Python
10 lines
229 B
Python
from django.conf import settings
|
|
from youtube_dl import version as yt_version
|
|
|
|
|
|
def app_details(request):
|
|
return {
|
|
'app_version': str(settings.VERSION),
|
|
'youtube_dl_version': str(yt_version.__version__)
|
|
}
|