diff options
author | Guillaume Pasquet <dev@etenil.net> | 2022-03-03 23:18:08 +0000 |
---|---|---|
committer | Guillaume Pasquet <dev@etenil.net> | 2022-03-03 23:18:08 +0000 |
commit | 57af17cfa6e08a6fe9bf6d73d401af17dccfa3bb (patch) | |
tree | cd550ccf0eb78f360e6813ffdfd3c89d817eb21f /src/main.rs | |
parent | f797f10c2eda28a221759fc26ddf483f41232604 (diff) |
Introduce JSONPath and potentially break old stuff.
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs index 2973b27..1738391 100644 --- a/src/main.rs +++ b/src/main.rs @@ -27,8 +27,6 @@ struct Args { #[clap(short, long)] filter: Option<String>, #[clap(short, long)] - path: Option<String>, - #[clap(short, long)] no_color: bool, files: Vec<String>, } @@ -62,7 +60,6 @@ fn main() { for file in args.files_iter() { match executor.execute(file, &output, args.jq_filter()) { - //match run_file(&args, &mut executor, file) { Ok(()) => (), Err(err) => println!("{}", err), } |