Jones BeachforFrom Scratch Codeblog.fromscratchcode.com·Oct 7, 2024Declarative macro magic from Axum in RustTake a quick glance at the code snippet below. Without thinking too hard, is get a function or a method? How about post? Router::new() .route(“/one”, get(get_handler).post(post_handler)) .route(“/two”, post(post_handler).get(get_handler)) Wh...108 readsRustAdd a thoughtful commentNo comments yetBe the first to start the conversation.