mmv_lib/lib.rs
1#![forbid(unsafe_code)]
2
3//! # Mass move
4//! `mass move` or `mmv` is a collection of utilities to help moving,
5//! parsing and making file path with template names.
6pub mod finder;
7pub mod args;
8pub mod error_handler;
9pub mod matcher;
10pub mod input_parser;
11mod output_pattern;
12mod matches;