use askama::Template; use crate::app::config::{ Command, CommandExecutor, }; #[derive(Template)] #[template(path = "commands.html")] pub struct CommandsTemplate { pub commands: Vec, } #[derive(Template)] #[template(path = "add_command.html")] pub struct AddCommandTemplate;