use df_plugin::{Model, models, Plugin}; pub struct {{plugin}} {} impl Plugin for {{plugin}} { fn title(&mut self) -> &'static str {"{{title}}"} fn model(&mut self, name: &str) -> Box { match name { //"test" => Box::new(TestTest {}), _ => models(name) } } } //pub mod test;