aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/index.py
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-02-09 12:19:55 +0000
committerGravatar GitHub <[email protected]>2018-02-09 12:19:55 +0000
commitb38a9f56e54eb21eec37f40075399961ba82906f (patch)
tree3255dc43a11734726509a1ed79d7dfa1da02cb63 /pysite/views/index.py
parentWeird, PyCharm didn't commit all my changes last push (diff)
Move from straight app registration to Blueprints (#6)
Diffstat (limited to 'pysite/views/index.py')
-rw-r--r--pysite/views/index.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/pysite/views/index.py b/pysite/views/index.py
deleted file mode 100644
index 0c2d1578..00000000
--- a/pysite/views/index.py
+++ /dev/null
@@ -1,10 +0,0 @@
-# coding=utf-8
-from pysite.base_route import RouteView
-
-
-class IndexView(RouteView):
- path = "/"
- name = "index"
-
- def get(self):
- return self.render("index.html")