9 lines
156 B
Python
9 lines
156 B
Python
from django.http import HttpResponse
|
|
|
|
# from django.shortcuts import render
|
|
|
|
|
|
def home(request):
|
|
print('home')
|
|
return HttpResponse('home do app 1')
|