30980-vm/core/views.py
2025-10-19 15:26:31 +00:00

7 lines
202 B
Python

from django.http import HttpResponse
def home(request):
"""Simple health-check style endpoint for initial verification."""
return HttpResponse("Flatlogic Python template: Django is running.")