diff options
Diffstat (limited to 'routes')
-rw-r--r-- | routes/healthcheck.py | 8 | ||||
-rw-r--r-- | routes/index.py | 8 | ||||
-rw-r--r-- | routes/invite.py | 9 |
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/") |