devclean 0.1.2

A tool to clean up your development environment
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::path::Path;
pub mod general;
pub mod languages;
pub mod stop;
pub use stop::Stop;

pub trait Removable: Send + Sync {
    fn is_removable(&self, path: &Path) -> bool;
}

pub trait Reportable: Send + Sync {
    fn report(&self, path: &Path) -> bool;
}