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<dyn Model> {
        match name {
            _ => models(name)
        }
    }
}