add structured error handling with thiserror

This commit is contained in:
Adir Shitrit
2025-11-08 11:07:48 +02:00
parent 1aa6f828cf
commit c7ae466c05
2 changed files with 29 additions and 0 deletions

View File

@@ -1,9 +1,11 @@
pub mod detection;
pub mod error;
pub mod memory;
pub mod process;
pub mod thread;
pub use detection::{DetectionEngine, DetectionResult, ThreatLevel};
pub use error::{GhostError, Result};
pub use memory::{MemoryProtection, MemoryRegion};
pub use process::ProcessInfo;
pub use thread::ThreadInfo;