1 2 3 4 5 6 7 8 9 10 11 12
/// This module contains the main command logic for `cleansh`. /// It defines the various subcommands and their associated logic. /// src/commands/mod.rs pub mod cleansh; pub mod stats; pub mod uninstall; pub mod verify; pub mod sync;