4 lines
109 B
Python
4 lines
109 B
Python
|
from django.http import HttpResponse
|
||
|
|
||
|
def index(request):
|
||
|
return HttpResponse('<h1>Hello world!</h1>')
|