Skip to main content

subcog/cli/
consolidate.rs

1//! Consolidate CLI command.
2
3/// Consolidate command handler.
4pub struct ConsolidateCommand;
5
6impl ConsolidateCommand {
7    /// Creates a new consolidate command.
8    #[must_use]
9    pub const fn new() -> Self {
10        Self
11    }
12}
13
14impl Default for ConsolidateCommand {
15    fn default() -> Self {
16        Self::new()
17    }
18}