Fixes and improvements courtesy of Daan (black-puppydog) #6

Merged
glyph merged 13 commits from black_puppydog_fixes into main 2022-10-02 16:43:03 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 5c0d4726c0 - Show all commits

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