dracon-sync 0.1.11

Invisible git sync daemon for deterministic AI-assisted development
1
2
3
4
5
6
7
8
//! Cooldown management for the sync daemon.
//!
//! NOTE: The daemon currently uses raw `HashMap<PathBuf, Instant>` for cooldowns
//! (see daemon.rs). This module previously contained a `CooldownManager` struct
//! that was never adopted. Kept as a placeholder for future consolidation.

// CooldownManager was removed — it was dead code. The daemon uses inline
// HashMaps for repair_cooldowns, filter_cooldowns, and remote_notify_cooldowns.