6 lines
93 B
Python
6 lines
93 B
Python
|
|
from django.http import HttpResponse
|
||
|
|
|
||
|
|
|
||
|
|
def index(request):
|
||
|
|
return HttpResponse("Dough!")
|