()
| 121 | |
| 122 | @app.route("/api/get_config", methods=["GET"]) |
| 123 | def api_get_config(): |
| 124 | config = get_config() |
| 125 | return jsonify(config) |
| 126 | |
| 127 | |
| 128 | @app.route("/api/update_config", methods=["POST"]) |
nothing calls this directly
no test coverage detected