mirror of
https://github.com/Xevion/simple-viewer.git
synced 2025-12-06 01:16:24 -06:00
8 lines
188 B
Python
8 lines
188 B
Python
from django.shortcuts import render
|
|
|
|
from django.http import HttpResponse
|
|
|
|
def index(request):
|
|
"""Index view for the simple-viewer project."""
|
|
return HttpResponse('Hello, World.')
|