aboutsummaryrefslogtreecommitdiffstats
path: root/routes/invite.py
diff options
context:
space:
mode:
Diffstat (limited to 'routes/invite.py')
-rw-r--r--routes/invite.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/routes/invite.py b/routes/invite.py
new file mode 100644
index 00000000..a3400cf2
--- /dev/null
+++ b/routes/invite.py
@@ -0,0 +1,12 @@
+# 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/")