Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -20,4 +20,5 @@ def analyze():
|
|
| 20 |
entities = extract_entities(log_content)
|
| 21 |
return jsonify(entities)
|
| 22 |
|
| 23 |
-
|
|
|
|
|
|
| 20 |
entities = extract_entities(log_content)
|
| 21 |
return jsonify(entities)
|
| 22 |
|
| 23 |
+
if __name__ == "__main__":
|
| 24 |
+
app.run(host='0.0.0.0', port=5000, debug=True)
|