From 3aeffc8735848ccd0518965e8be215d6f4f007b3 Mon Sep 17 00:00:00 2001 From: Adir Shitrit Date: Sat, 8 Nov 2025 12:21:27 +0200 Subject: [PATCH] add CSV output format option --- ghost-cli/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/ghost-cli/src/main.rs b/ghost-cli/src/main.rs index c26aa4a..0d4f697 100644 --- a/ghost-cli/src/main.rs +++ b/ghost-cli/src/main.rs @@ -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")