1//! Force-evict an entry. Called from `notify` watchers when a path rename is 2//! observed inside the workspace, or by the dev-mode hot-reload signal. 3 4use std::path::Path; 5 6use crate::Cache::PathCanon::Cache::CACHE; 7 8pub fn Fn(Path:&Path) { CACHE.invalidate(Path); }