Files
cursopython2023/aula207_ola_django/home/views.py

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')