file-declutter 0.1.1

Reorganizes files into nested folders based on their filenames.
Documentation
1
2
3
4
5
6
7
8
9
use std::path::PathBuf;

use lazy_static::lazy_static;

pub const BIN_NAME: &str = "file-declutter";

lazy_static! {
    pub static ref BIN_PATH: PathBuf = assert_cmd::cargo::cargo_bin(BIN_NAME);
}