summaryrefslogtreecommitdiffstats
path: root/src/cli.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli.rs')
-rw-r--r--src/cli.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/cli.rs b/src/cli.rs
index d079a70..cc8734e 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -876,6 +876,21 @@ pub fn cli<'a>() -> App<'a> {
.about("Format output as CSV")
)
)
+ .subcommand(App::new("containers")
+ .version(crate_version!())
+ .about("Work with the containers of the endpoint(s)")
+ .subcommand(App::new("list")
+ .version(crate_version!())
+ .about("List the containers and stats about them")
+ .arg(Arg::new("csv")
+ .required(false)
+ .multiple(false)
+ .long("csv")
+ .takes_value(false)
+ .about("Format output as CSV")
+ )
+ )
+ )
)
}