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