aboutsummaryrefslogtreecommitdiffstats
path: root/routes
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-02-05 20:15:01 +0000
committerGravatar Gareth Coles <[email protected]>2018-02-05 20:15:01 +0000
commitf0f347b01734b719bae0d36a8670fd7e49866b1e (patch)
tree4d9cf54e44b7fea4124389098fd0fa37a17cdad9 /routes
parentMinifix (diff)
Revert "Major update"
This reverts commit 80a1ab5
Diffstat (limited to 'routes')
-rw-r--r--routes/healthcheck.py8
-rw-r--r--routes/index.py8
-rw-r--r--routes/invite.py9
3 files changed, 0 insertions, 25 deletions
diff --git a/routes/healthcheck.py b/routes/healthcheck.py
deleted file mode 100644
index 11a5fc24..00000000
--- a/routes/healthcheck.py
+++ /dev/null
@@ -1,8 +0,0 @@
-# coding=utf-8
-
-
-class Index:
- path = ["/healthcheck"]
-
- def get(self, req):
- return req.Response(json={"status": "ok"})
diff --git a/routes/index.py b/routes/index.py
deleted file mode 100644
index 76671ed1..00000000
--- a/routes/index.py
+++ /dev/null
@@ -1,8 +0,0 @@
-# coding=utf-8
-
-
-class Index:
- path = ["/", "/index"]
-
- def get(self, req):
- return req.Response("Coming soon:tm:")
diff --git a/routes/invite.py b/routes/invite.py
deleted file mode 100644
index 29553345..00000000
--- a/routes/invite.py
+++ /dev/null
@@ -1,9 +0,0 @@
-# coding=utf-8
-
-
-class Index:
- path = ["/invite"]
-
- def get(self, res):
- return res.Response(
- status_code=301, text="http://invite.pythondiscord.com/")