From fcc13328ff82326d25e39504732701b27f894e22 Mon Sep 17 00:00:00 2001 From: Melody Horn / boringcactus Date: Sat, 12 Jun 2021 20:54:43 -0600 Subject: add aspirational example derived from the django tutorial --- examples/tutorial01/polls/views.rs | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 examples/tutorial01/polls/views.rs (limited to 'examples/tutorial01/polls/views.rs') diff --git a/examples/tutorial01/polls/views.rs b/examples/tutorial01/polls/views.rs new file mode 100644 index 0000000..8678e97 --- /dev/null +++ b/examples/tutorial01/polls/views.rs @@ -0,0 +1,5 @@ +use tosin::http::{Request, Response}; + +pub async fn index(request: Request) -> Response { + Response("Hello, world. You're at the polls index.") +} -- cgit v1.2.3