7 lines
202 B
Python
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.")
|