TianyiMoe/backend/randpic/views.py

6 lines
225 B
Python
Raw Normal View History

2024-04-27 07:50:22 +00:00
from django.shortcuts import render, redirect
from django.http import HttpResponse
2024-04-30 05:09:31 +00:00
from .random_picture import get_random_picture_url
2024-04-27 07:50:22 +00:00
# Create your views here.
def index(request):
2024-04-30 05:09:31 +00:00
return redirect(get_random_picture_url())