aboutsummaryrefslogtreecommitdiffstats
path: root/routes
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--routes/healthcheck.py14
-rw-r--r--routes/index.py11
-rw-r--r--routes/invite.py12
3 files changed, 0 insertions, 37 deletions
diff --git a/routes/healthcheck.py b/routes/healthcheck.py
deleted file mode 100644
index f06b18d3..00000000
--- a/routes/healthcheck.py
+++ /dev/null
@@ -1,14 +0,0 @@
-# coding=utf-8
-
-# External Libraries
-from werkzeug.wrappers import Response
-
-# Site Internals
-import ujson as json
-
-
-class Index:
- path = ["/healthcheck"]
-
- def get(self):
- return Response(json.dumps({"status": "ok"}))
diff --git a/routes/index.py b/routes/index.py
deleted file mode 100644
index 403e5452..00000000
--- a/routes/index.py
+++ /dev/null
@@ -1,11 +0,0 @@
-# coding=utf-8
-
-# External Libraries
-from werkzeug.wrappers import Response
-
-
-class Index:
- path = ["/", "/index"]
-
- def get(self):
- return Response("Coming soon:tm:")
diff --git a/routes/invite.py b/routes/invite.py
deleted file mode 100644
index a3400cf2..00000000
--- a/routes/invite.py
+++ /dev/null
@@ -1,12 +0,0 @@
-# coding=utf-8
-
-# External Libraries
-from werkzeug.wrappers import Response
-
-
-class Index:
- path = ["/invite"]
-
- def get(self):
- return Response(
- status_code=301, text="http://invite.pythondiscord.com/")