1
2
3
4
5
pub trait Plugin {
    fn name(&self) -> &str;
    fn path(&self) -> &std::path::Path;
    fn config(&self) -> Option<String>;
}