diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2017-10-29 12:42:29 +0100 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2017-10-29 12:42:29 +0100 |
commit | a5fbd781ccc9b64483cc499c375fa6e0e99ade1d (patch) | |
tree | 3bab3d0d6682fae6ba0a350db2326538b70988df /cherry_lesana/app.py |
Project skeleton
Diffstat (limited to 'cherry_lesana/app.py')
-rw-r--r-- | cherry_lesana/app.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/cherry_lesana/app.py b/cherry_lesana/app.py new file mode 100644 index 0000000..4ab7672 --- /dev/null +++ b/cherry_lesana/app.py @@ -0,0 +1,13 @@ + +import cherrypy + + +class App: + """ + """ + + @cherrypy.expose + def index(self): + cherrypy.log('asd') + return "Hello World" + |