Add a basic Django application
[styx.blog] / styx / views.py
diff --git a/styx/views.py b/styx/views.py
new file mode 100644 (file)
index 0000000..453e180
--- /dev/null
@@ -0,0 +1,4 @@
+from django.http import HttpResponse
+
+def index(request):
+    return HttpResponse('Hello, world')