move_links/lib.rs
1//! # Move Links
2//! CLI utility to move (or rename) your files to a new location and
3//! redirect all of its symbolic links, to the new path (or name).
4
5pub mod cli_utils;
6pub mod paths;
7
8pub struct Config {
9 pub verbose: bool,
10}
11impl Config {
12 pub fn new(verbose: bool) -> Config {
13 Config { verbose }
14 }
15}