aboutsummaryrefslogtreecommitdiff
path: root/examples/tutorial01/polls/views.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/tutorial01/polls/views.rs')
-rw-r--r--examples/tutorial01/polls/views.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/tutorial01/polls/views.rs b/examples/tutorial01/polls/views.rs
index 23b740d..4859cec 100644
--- a/examples/tutorial01/polls/views.rs
+++ b/examples/tutorial01/polls/views.rs
@@ -1,5 +1,5 @@
-use tosin::http::{Request, Response};
+use tosin::http::{Reply, Response};
-pub fn index(request: Request) -> Response {
- Response("Hello, world. You're at the polls index.")
+pub fn index() -> Response {
+ "Hello, world. You're at the polls index.".into_response()
}