//! Contains the subcommands that can be executed by the user.
//!
//! The subcommands are broken up into their own packages so that they are a little more self-
//! contained. The benefit of this design is that it compartmentalizes code that is otherwise
//! irrelevant to the other subcommands. Additionally, you may have some subcommands that are
//! considerably large and would be better placed in their own modules.
use crateApplication;
use *;
/// The subcommands that are offered by the application.