aboutsummaryrefslogtreecommitdiff
path: root/app/dispatch/views.py
diff options
context:
space:
mode:
authorMitch Riedstra <Mitch@riedstra.us>2017-06-28 12:37:02 -0400
committerMitch Riedstra <Mitch@riedstra.us>2017-06-28 12:37:02 -0400
commit8312e3b36a3bf2276e98b883bc1dbeb235ca9ffe (patch)
tree1e6542ac6a1f696ec3c8c798ee3c1701758f560b /app/dispatch/views.py
parentb2d68c78817f76e0bd01d7f79c3e216c3c8f9e8d (diff)
downloaddispatch-tracker-8312e3b36a3bf2276e98b883bc1dbeb235ca9ffe.tar.gz
dispatch-tracker-8312e3b36a3bf2276e98b883bc1dbeb235ca9ffe.tar.xz
Initial Setup
Diffstat (limited to 'app/dispatch/views.py')
-rw-r--r--app/dispatch/views.py8
1 files changed, 8 insertions, 0 deletions
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")