From 8312e3b36a3bf2276e98b883bc1dbeb235ca9ffe Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Wed, 28 Jun 2017 12:37:02 -0400 Subject: Initial Setup --- app/dispatch/views.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 app/dispatch/views.py (limited to 'app/dispatch/views.py') diff --git a/app/dispatch/views.py b/app/dispatch/views.py new file mode 100644 index 0000000..c039614 --- /dev/null +++ b/app/dispatch/views.py @@ -0,0 +1,8 @@ +from django.shortcuts import render +from django.http import HttpResponse + +# Create your views here. + + +def index(request): + return HttpResponse("Hello, world. You're at the index") -- cgit v1.2.3