this repo has no description
at fmt 166 B view raw
1use askama::Template; 2 3#[derive(Template)] 4#[template(path = "error.askama.html")] 5pub struct ErrorTemplate<'a> { 6 pub title: &'a str, 7 pub message: &'a str, 8}