From a7cfa4c8b73279158136d0a20855815659dfbfb6 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Sat, 22 May 2021 17:20:29 -0700 Subject: [PATCH] Don't disable default 'Shield' in 'hello' example. --- examples/hello/src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/hello/src/main.rs b/examples/hello/src/main.rs index 0de7b074..bdc22328 100644 --- a/examples/hello/src/main.rs +++ b/examples/hello/src/main.rs @@ -61,5 +61,4 @@ fn rocket() -> _ { .mount("/", routes![hello]) .mount("/hello", routes![world, mir]) .mount("/wave", routes![wave]) - .attach(rocket::shield::Shield::new()) }