summaryrefslogtreecommitdiff
path: root/src/commands/mod.rs
diff options
context:
space:
mode:
authorThomas Bertschinger <tahbertschinger@gmail.com>2024-04-23 21:43:25 -0600
committerThomas Bertschinger <tahbertschinger@gmail.com>2024-05-07 21:29:32 -0400
commit16f2849433aafd33eae8539536169f86df124dfd (patch)
tree6431313e883f0bf3bc9eca36106c23bd48f3fb98 /src/commands/mod.rs
parentfbb223308961067a44d343cbca515aa12a745bde (diff)
WIP: bcachefs: new debug command
Signed-off-by: Thomas Bertschinger <tahbertschinger@gmail.com>
Diffstat (limited to 'src/commands/mod.rs')
-rw-r--r--src/commands/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/commands/mod.rs b/src/commands/mod.rs
index c7645926..831aaf5a 100644
--- a/src/commands/mod.rs
+++ b/src/commands/mod.rs
@@ -5,11 +5,13 @@ pub mod mount;
pub mod list;
pub mod completions;
pub mod subvolume;
+pub mod debug;
pub use mount::mount;
pub use list::list;
pub use completions::completions;
pub use subvolume::subvolume;
+pub use debug::debug;
#[derive(clap::Parser, Debug)]
#[command(name = "bcachefs")]