This commit is contained in:
Xevion
2020-10-31 04:32:03 -05:00
commit 67b717d10c
21 changed files with 225 additions and 0 deletions

7
viewer/views.py Normal file
View File

@@ -0,0 +1,7 @@
from django.shortcuts import render
from django.http import HttpResponse
def index(request):
"""Index view for the simple-viewer project."""
return HttpResponse('Hello, World.')