7 lines
118 B
Python
7 lines
118 B
Python
|
|
|
||
|
|
from django.http import HttpResponse
|
||
|
|
|
||
|
|
|
||
|
|
def index(request) -> HttpResponse:
|
||
|
|
return HttpResponse("hello tutorial")
|