muistox/gallery/views.py

9 lines
163 B
Python
Raw Normal View History

2024-12-28 12:21:29 +02:00
from django.http import HttpResponse
from django.shortcuts import render
# Create your views here.
def index(request):
return HttpResponse("Hello, world.")