diff options
Diffstat (limited to 'app.py')
-rw-r--r-- | app.py | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -0,0 +1,9 @@ +from bottle import Bottle, run + +app = Bottle() + [email protected]('/hello') +def hello(): + return "Hello World!" + +run(app, host='localhost', port=8080) |