bvplan/bvplan/src/templates.rs
2023-02-27 11:09:16 +01:00

10 lines
179 B
Rust

use askama::Template;
use crate::cache;
#[derive(Template)]
#[template(path = "bvplan.html")]
pub struct BVplan {
pub data: cache::keys::substitutions::SubstitutionQuery,
}