diff options
Diffstat (limited to 'routes/invite.py')
| -rw-r--r-- | routes/invite.py | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/routes/invite.py b/routes/invite.py new file mode 100644 index 00000000..29553345 --- /dev/null +++ b/routes/invite.py @@ -0,0 +1,9 @@ +# coding=utf-8 + + +class Index: +    path = ["/invite"] + +    def get(self, res): +        return res.Response( +            status_code=301, text="http://invite.pythondiscord.com/") | 
