aboutsummaryrefslogtreecommitdiff
path: root/examples/tutorial01/polls/views.rs
diff options
context:
space:
mode:
authorMelody Horn / boringcactus <melody@boringcactus.com>2021-06-12 21:06:06 -0600
committerMelody Horn / boringcactus <melody@boringcactus.com>2021-06-12 21:06:06 -0600
commit582124d59afa438e2cb88cc024d6b19232236e1e (patch)
tree6b1bc48d5e3a405434f4900c7e20daf0d186de5a /examples/tutorial01/polls/views.rs
parentfcc13328ff82326d25e39504732701b27f894e22 (diff)
downloadtosin-582124d59afa438e2cb88cc024d6b19232236e1e.tar.gz
tosin-582124d59afa438e2cb88cc024d6b19232236e1e.zip
stub out basic implementation
Diffstat (limited to 'examples/tutorial01/polls/views.rs')
-rw-r--r--examples/tutorial01/polls/views.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tutorial01/polls/views.rs b/examples/tutorial01/polls/views.rs
index 8678e97..23b740d 100644
--- a/examples/tutorial01/polls/views.rs
+++ b/examples/tutorial01/polls/views.rs
@@ -1,5 +1,5 @@
use tosin::http::{Request, Response};
-pub async fn index(request: Request) -> Response {
+pub fn index(request: Request) -> Response {
Response("Hello, world. You're at the polls index.")
}