mirror of
https://github.com/wahyd4/links.git
synced 2026-08-08 21:04:53 +10:00
Agent-Logs-Url: https://github.com/wahyd4/links/sessions/514d1f3d-d003-4f16-9a54-d221dba306f7 Co-authored-by: wahyd4 <836576+wahyd4@users.noreply.github.com>
9 lines
203 B
Python
9 lines
203 B
Python
from django.conf import settings
|
|
|
|
|
|
def build_info(request):
|
|
return {
|
|
'BUILD_TIME': getattr(settings, 'BUILD_TIME', ''),
|
|
'BUILD_VERSION': getattr(settings, 'BUILD_VERSION', ''),
|
|
}
|