Flask - Deployment
Given this Flask code, what will be the response status code when accessing '/health'?
from flask import Flask
app = Flask(__name__)
@app.route('/health')
def health():
return 'Healthy', 200