1// This is free and unencumbered software released into the public domain.
23pub mod commands;
4pub mod shared;
56mod subcommands_provider;
7pub use subcommands_provider::*;
89use clientele::SysexitsError;
1011pub type Result<T = SysexitsError, E = SysexitsError> = std::result::Result<T, E>;