1//! Plugin protocol wire types and (future) helpers. 2 3mod command; 4mod output; 5 6pub use command::*; 7pub use output::*; 8 9#[cfg(test)] 10mod output_tests;