b end.py 286 B

123456789101112131415
  1. from flask import Flask, render_template
  2. app = Flask(__name__)
  3. @app.route("/")
  4. def index():
  5. return render_template("home.html")
  6. @app.route("/health")
  7. def health():
  8. return "Health check passed!"
  9. @app.route("/api/questions/")
  10. def questions_index():
  11. return "Hello, World!"