django-site/djangosite/apps/articles/views.py
2022-12-11 20:48:10 +08:00

4 lines
109 B
Python

from django.http import HttpResponse
def index(request):
return HttpResponse('<h1>Hello world!</h1>')