1//! Clear the entire path-canon cache. Diagnostic / shutdown use. 2 3use crate::Cache::PathCanon::Cache::CACHE; 4 5pub fn Fn() { CACHE.invalidate_all(); }