plugin-test-api 0.1.2

plugin base API for the plugin-test experiment
Documentation

pub trait PluginInformation {
  fn name(&self) -> String;
  fn get_instance(&self) -> Box<SayHello>;
}

pub trait SayHello {
  fn say_hello(&self) -> String;
}