(js)
| 8 | @app.route("/", defaults={"js": "fetch"}) |
| 9 | @app.route("/<any(xhr, jquery, fetch):js>") |
| 10 | def index(js): |
| 11 | return render_template(f"{js}.html", js=js) |
| 12 | |
| 13 | |
| 14 | @app.route("/add", methods=["POST"]) |
nothing calls this directly
no test coverage detected