remove duplicate route mounting

This commit is contained in:
glyph 2022-10-02 17:03:14 +01:00
parent 27b2a32572
commit 5c0d4726c0
1 changed files with 1 additions and 1 deletions

View File

@ -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])
}
```