django-site/djangosite/apps/articles/views.py

4 lines
109 B
Python
Raw Normal View History

2022-12-11 15:48:10 +03:00
from django.http import HttpResponse
def index(request):
return HttpResponse('<h1>Hello world!</h1>')