diff options
| author | Yuval Adam <_@yuv.al> | 2018-10-08 13:09:48 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2018-10-08 13:09:48 +0300 |
| commit | 755a1023aafad7bdf9b3908508467664961600c4 (patch) | |
| tree | 6312276e81940e8016e6c20c26e223cc5ebfab89 /app.py | |
| parent | ff0aacb2c09fccb5819bb8ace792b5839afb6ba4 (diff) | |
Initial flask server
Diffstat (limited to 'app.py')
| -rw-r--r-- | app.py | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -0,0 +1,7 @@ +from flask import Flask + +app = Flask(__name__) + +@app.route('/') +def index(): + return 'hello' |
