7 lines
174 B
Python
7 lines
174 B
Python
|
from django.http import HttpResponse
|
||
|
from django.shortcuts import render
|
||
|
|
||
|
# Create your views here.
|
||
|
def index(request):
|
||
|
return HttpResponse("Basic test response.")
|