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