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

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