Ahmed007 commited on
Commit
f5f4e81
·
verified ·
1 Parent(s): 9320951

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +4 -0
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()