| 1 | #![allow(dead_code)] |
| 2 | |
| 3 | pub mod context; |
| 4 | pub mod discovery; |
| 5 | pub mod install; |
| 6 | pub mod manifest; |
| 7 | pub mod mutation; |
| 8 | mod path_identity; |
| 9 | pub mod registry; |
| 10 | pub mod types; |
| 11 | |
| 12 | #[cfg(test)] |
| 13 | mod tests; |
| 14 | |
| 15 | pub use context::{HostEnvironment, PluginDiscoveryContext}; |
| 16 | pub use registry::PluginRegistry; |
| 17 |