6 lines
265 B
Python
6 lines
265 B
Python
|
from django.shortcuts import render, redirect
|
||
|
from django.http import HttpResponse
|
||
|
from .random_picture import get_random_picture
|
||
|
# Create your views here.
|
||
|
def index(request):
|
||
|
return redirect("https://cdn.clf3.org/tianyi-random/{}".format(get_random_picture()))
|