Update app.py
Browse files
app.py
CHANGED
|
@@ -57,8 +57,8 @@ def process_response(response_data):
|
|
| 57 |
return list(messages) # Convert the set back to a list
|
| 58 |
|
| 59 |
@app.route('/')
|
| 60 |
-
def
|
| 61 |
-
return
|
| 62 |
|
| 63 |
@app.route('/start', methods=['POST'])
|
| 64 |
def launch():
|
|
|
|
| 57 |
return list(messages) # Convert the set back to a list
|
| 58 |
|
| 59 |
@app.route('/')
|
| 60 |
+
def hello_world():
|
| 61 |
+
return 'Hello, World!'
|
| 62 |
|
| 63 |
@app.route('/start', methods=['POST'])
|
| 64 |
def launch():
|