From 5c0d4726c0e611a2d49314730def4473139f1cde Mon Sep 17 00:00:00 2001 From: glyph Date: Sun, 2 Oct 2022 17:03:14 +0100 Subject: [PATCH] remove duplicate route mounting --- part_2_subscribe_form/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/part_2_subscribe_form/README.md b/part_2_subscribe_form/README.md index d6033fc..4768100 100644 --- a/part_2_subscribe_form/README.md +++ b/part_2_subscribe_form/README.md @@ -105,7 +105,7 @@ use rocket_dyn_templates::Template; async fn rocket() -> _ { rocket::build() .attach(Template::fairing()) - .mount("/", routes![home, subscribe_form, unsubscribe_form]) + .mount("/", routes![home]) } ```