diff options
author | koverstreet <kent.overstreet@gmail.com> | 2024-02-09 14:20:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-09 14:20:29 -0500 |
commit | 9e6d9560d070bc14e1498a24ef6634d2b99f7e84 (patch) | |
tree | bfbfb68abcf2caee31707e6b1a3f977528017e63 /src/commands/mod.rs | |
parent | a95a25dc1d21ae50de150f8ea9a2d409415dbb3b (diff) | |
parent | 4327e0681b205b52a045005f66541205401cf7b0 (diff) |
Merge pull request #236 from ErrorNoInternet/subcommand-aliases
Add a few subcommand aliases
Diffstat (limited to 'src/commands/mod.rs')
-rw-r--r-- | src/commands/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/commands/mod.rs b/src/commands/mod.rs index 76de7f86..70fef82c 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -18,6 +18,7 @@ enum Subcommands { List(cmd_list::Cli), Mount(cmd_mount::Cli), Completions(cmd_completions::Cli), + #[command(visible_aliases = ["subvol"])] Subvolume(cmd_subvolume::Cli), } |