Function broot::filesystems::clear_cache

source ·
pub fn clear_cache()
Examples found in repository?
src/app/app.rs (line 817)
813
814
815
816
817
818
fn clear_caches() {
    file_sum::clear_cache();
    git::clear_status_computer_cache();
    #[cfg(unix)]
    crate::filesystems::clear_cache();
}