imag/libimagstore/src/hook/result.rs

3 lines
76 B
Rust

use hook::error::HookError;
pub type HookResult<T> = Result<T, HookError>;