df-plugin 0.1.13

This is an Plugin
Documentation
use crate::{Model, Plugin, models};

pub struct {{plugin}} {}

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