pipeline_script/plugin/
mod.rs

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