1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
//! Library exports for ghidra-cli testing infrastructure. //! //! This module exposes internal components needed for integration tests. #[path = "error.rs"] pub mod error; #[path = "config.rs"] pub mod config; #[path = "ipc/mod.rs"] pub mod ipc; /// Re-export bridge module for integration tests. #[path = "ghidra"] pub mod ghidra { pub mod bridge; }