diff options
author | 2018-02-05 20:26:54 +0100 | |
---|---|---|
committer | 2018-02-05 20:26:54 +0100 | |
commit | 80a1ab522e7a49f3ea1168d8658fbff293c866f1 (patch) | |
tree | 206a45b1a68c273db43ad04b105bcd3e7c48f565 /pysite/views/index.py | |
parent | Dynamic route loader; proper application structure (diff) |
Major update
- Switch to Japronto
- More linters
- Rewrite route handling
- Rewrite error handling
- Rewrite static handling
- Error when no `Index` propery is found
- Probably some more stuff? idk
Code needs testing; Maybe we could use pytest?
Signed-off-by: martmists <[email protected]>
Diffstat (limited to 'pysite/views/index.py')
-rw-r--r-- | pysite/views/index.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/pysite/views/index.py b/pysite/views/index.py deleted file mode 100644 index 2e779003..00000000 --- a/pysite/views/index.py +++ /dev/null @@ -1,12 +0,0 @@ -# coding=utf-8 -from pysite.base_route import BaseView - -__author__ = "Gareth Coles" - - -class IndexView(BaseView): - path = "/" - name = "index" - - def get(self): - return "Coming soon:tm:" |