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