Add route decorators for common HTTP methods. For example, @app.post("/login") is a shortcut for @app.route("/login", methods=["POST"]).
I consider this to be a minor syntactic sugar.
I consider this to be a minor syntactic sugar.