We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bccc43b commit 4b353daCopy full SHA for 4b353da
rust/boil/src/main.rs
@@ -87,7 +87,6 @@ async fn main() -> Result<(), Error> {
87
ShowCommand::Images(arguments) => {
88
show::images::run_command(arguments).context(ShowSnafu)
89
}
90
- ShowCommand::Tree => todo!(),
91
},
92
Command::Completions(arguments) => {
93
completions::run_command(arguments);
rust/boil/src/show/mod.rs
@@ -13,5 +13,4 @@ pub struct ShowArguments {
13
#[derive(Debug, Subcommand)]
14
pub enum ShowCommand {
15
Images(ShowImagesArguments),
16
- Tree,
17
0 commit comments