30982-vm/core/views.py
2025-10-19 16:54:29 +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.")