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