aboutsummaryrefslogtreecommitdiff
path: root/examples/tutorial01/polls/views.rs
blob: 23b740d233d613fd1456c53b862fd8f6512d3692 (plain)
1
2
3
4
5
use tosin::http::{Request, Response};

pub fn index(request: Request) -> Response {
    Response("Hello, world. You're at the polls index.")
}