Files
ghost/ghost-core/src/lib.rs

12 lines
297 B
Rust
Raw Normal View History

pub mod detection;
pub mod error;
pub mod memory;
pub mod process;
2025-11-07 18:09:06 +02:00
pub mod thread;
pub use detection::{DetectionEngine, DetectionResult, ThreatLevel};
pub use error::{GhostError, Result};
pub use memory::{MemoryProtection, MemoryRegion};
pub use process::ProcessInfo;
2025-11-07 18:09:06 +02:00
pub use thread::ThreadInfo;