1use crate::core::engine::Engine; 2pub mod builtin; 3pub mod format_string; 4pub mod method; 5pub mod task; 6pub mod test; 7 8#[allow(unused)] 9pub trait Plugin { 10 fn apply(self, e: &mut Engine); 11}