tf_django/app/views.py
2026-04-20 14:27:34 +00:00

8 lines
170 B
Python

from django.shortcuts import render
from django.http import HttpResponse
def hola(request):
return HttpResponse("<h1>Hello, World!</h1>")
# Create your views here.