add CSV output format option

This commit is contained in:
Adir Shitrit
2025-11-08 12:21:27 +02:00
parent fe3e5e3b21
commit 3aeffc8735

View File

@@ -16,6 +16,7 @@ fn main() -> Result<()> {
.value_name("FORMAT")
.help("Output format: table, json")
.default_value("table")
.value_parser(["table", "json", "csv"])
)
.arg(
Arg::new("verbose")