pub trait PluginFactory: Send + Sync + 'static { // Required method fn create(&self, config: JsonValue) -> Result<Box<dyn Plugin>>; }
Constructs a Plugin from runtime configuration.
Plugin
Construct a plugin from its config section (JSON from folk.toml).
folk.toml