pathmaster 0.3.0

pathmaster is a powerful command-line tool written in Rust for managing your system's PATH environment variable.
1
2
3
4
5
6
7
8
9
10
11
//! Backup functionality for pathmaster.

pub mod core;
pub mod create;
pub mod mode;
pub mod restore;
pub mod show;

pub use core::create_backup;
pub use restore::execute as restore_from_backup;
pub use show::show_history;