use crate::{Model, Plugin, models};

pub struct {{plugin}} {}

impl Plugin for {{plugin}} {
    fn model(&mut self, name: &str) -> Box<dyn Model> {
        match name {
            _ => models(name)
        }
    }
}