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