use plugin_api::{Plugin, plugin, say_hello}; pub struct HelloWorld; impl Plugin for HelloWorld { fn load(&self) { say_hello("everyone".to_string()); } } plugin!(HelloWorld);