Skip to content

Commit

Permalink
first
Browse files Browse the repository at this point in the history
  • Loading branch information
Zachary Hanif committed Oct 30, 2019
1 parent 1fe3560 commit 52a87c6
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/server.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from flask import Flask

app = Flask(__name__)

@app.route('/hello')
def hello():
returnHello!’

if __name__ == '__main__':
app.run(debug=True, host='0.0.0.0')

0 comments on commit 52a87c6

Please sign in to comment.