aboutsummaryrefslogtreecommitdiff
path: root/examples/tutorial01/polls/urls.rs
blob: e978920c4d289ab22a8dd71de202e00c9e5c1a29 (plain)
1
2
3
4
5
6
7
use tosin::urls::Path;

use super::views;

pub const url_patterns: &[Path] = [
    Path::View { url: "", view: views::index, name: "index" },
];