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