diff --git a/server.py b/server.py index 1a7a839..5a9e6b6 100644 --- a/server.py +++ b/server.py @@ -3,8 +3,12 @@ class RootController(TGController): @expose() def index(self): - return 'Show what you can. Learn what you don\'t' + return 'Show what you can. Learn what you don\'t Another page' + @expose() + def huj(self): + return 'Show you huj. Learn what you don\'t' + from tg import MinimalApplicationConfigurator config = MinimalApplicationConfigurator()