30975-vm/core/views.py
2025-10-17 15:36:45 +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.")