Spaces:
Sleeping
Sleeping
Update main.py
Browse files
main.py
CHANGED
@@ -33,5 +33,9 @@ def get_skills():
|
|
33 |
|
34 |
return jsonify({'skills': output})
|
35 |
|
|
|
|
|
|
|
|
|
36 |
if __name__ == '__main__':
|
37 |
app.run()
|
|
|
33 |
|
34 |
return jsonify({'skills': output})
|
35 |
|
36 |
+
@app.get('/health')
|
37 |
+
def health():
|
38 |
+
return jsonify({'status': 'healthy'})
|
39 |
+
|
40 |
if __name__ == '__main__':
|
41 |
app.run()
|