Files
shoppy/shop/views.py
T
2024-11-21 11:43:38 +01:00

8 lines
186 B
Python

from django.http.response import HttpResponse
from django.shortcuts import render
# Create your views here.
def index(request, *args, **kwargs):
return HttpResponse("Hello there")