blob: a3400cf22b3e4fb604bf863aa17279e9cf485193 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
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/")
|