aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/api/index.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--pysite/views/api/index.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/pysite/views/api/index.py b/pysite/views/api/index.py
deleted file mode 100644
index 5111162c..00000000
--- a/pysite/views/api/index.py
+++ /dev/null
@@ -1,10 +0,0 @@
-from pysite.base_route import APIView
-from pysite.constants import ErrorCodes
-
-
-class IndexView(APIView):
- path = "/"
- name = "api.index"
-
- def get(self):
- return self.error(ErrorCodes.unknown_route)