1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Plugin discovery and manifest types. mod client; mod manifest; pub use client::*; pub use manifest::*; #[cfg(test)] mod client_tests; #[cfg(test)] mod install_tests; #[cfg(test)] mod manifest_tests;