ERROR: ร— Routing logic can't be ambiguous. โ”‚ You registered `app::fallback1` as the fallback handler for all unmatched โ”‚ incoming requests with a path that begins in `/users`. โ”‚ But `POST /users/yo` wasn't registered against that blueprint! โ”‚ It was registered under a different blueprint, with a different fallback โ”‚ handler: `pavex::router::default_fallback`. โ”‚ I can't determine which fallback is the most appropriate one for incoming โ”‚ `/users/yo` requests with a method that doesn't match the ones you โ”‚ registered a handler for. โ”‚ โ”‚ โ•ญโ”€[src/lib.rs:26:1] โ”‚ 26 โ”‚ }); โ”‚ 27 โ”‚ bp.route(POST, "/users/yo", f!(crate::handler)); โ”‚ ยท  โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€ โ”‚ ยท โ•ฐโ”€โ”€ The route was registered here โ”‚ 28 โ”‚ bp โ”‚ โ•ฐโ”€โ”€โ”€โ”€ โ”‚  help: You can fix this by registering `POST /users/yo` against the nested โ”‚ blueprint with `/users` as prefix. All `/users`-prefixed routes โ”‚ would then be using `app::fallback1` as fallback.