mirror of
https://github.com/meeb/tubesync.git
synced 2025-06-18 11:06:36 +00:00
8 lines
125 B
Python
8 lines
125 B
Python
from django.conf import settings
|
|
|
|
|
|
def app_details(request):
|
|
return {
|
|
'app_version': str(settings.VERSION)
|
|
}
|