diff options
Diffstat (limited to 'routes/index.py')
| -rw-r--r-- | routes/index.py | 11 | 
1 files changed, 11 insertions, 0 deletions
| diff --git a/routes/index.py b/routes/index.py new file mode 100644 index 00000000..403e5452 --- /dev/null +++ b/routes/index.py @@ -0,0 +1,11 @@ +# coding=utf-8 + +# External Libraries +from werkzeug.wrappers import Response + + +class Index: +    path = ["/", "/index"] + +    def get(self): +        return Response("Coming soon:tm:") | 
