10 lines
176 B
Python
10 lines
176 B
Python
"""Various random views."""
|
|
|
|
from django.http import HttpResponse
|
|
|
|
|
|
def home(request):
|
|
"""Site index, nothing special (or at all, right now)."""
|
|
|
|
return HttpResponse()
|