| 123456789101112131415 |
- from flask import Flask, render_template
- app = Flask(__name__)
- @app.route("/")
- def index():
- return render_template("home.html")
- @app.route("/health")
- def health():
- return "Health check passed!"
- @app.route("/api/questions/")
- def questions_index():
- return "Hello, World!"
|