//! Shared timeouts for remote / subprocess sources (avoid magic-number drift).
use Duration;
/// Typical HTTP(S) request timeout (web fetch, Slack API, S3 REST).
pub const HTTP_REQUEST: Duration = from_secs;
/// Shallow `git clone` for org scans (and other long-running subprocess work).
pub const GIT_CLONE: Duration = from_secs;
/// Ghidra `analyzeHeadless` wall-clock budget.
pub const GHIDRA_ANALYSIS: Duration = from_secs;