"""Various random views."""

from django.http import HttpResponse


def home(request):
    """Site index, nothing special (or at all, right now)."""

    return HttpResponse()