aboutsummaryrefslogtreecommitdiff
path: root/examples/tutorial01/polls/urls.rs
blob: d56b8c978f69de01df206ecb599bfb4a0afa6732 (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" },
];