From 883b9c65fce7f8596b7da5616efab8c4ecc616a4 Mon Sep 17 00:00:00 2001 From: Guillaume Pasquet Date: Mon, 21 Feb 2022 00:18:38 +0000 Subject: Added support for JQ filtering. --- src/executor.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/executor.rs') diff --git a/src/executor.rs b/src/executor.rs index 4930c5f..bd9767b 100644 --- a/src/executor.rs +++ b/src/executor.rs @@ -95,8 +95,8 @@ impl Executor { } } - pub fn execute(&mut self, bfile: BarbFile, print_headers: bool) -> Result { - self.run(&bfile, self.make_req(&bfile, print_headers)) + pub fn execute(&mut self, bfile: &BarbFile, print_headers: bool) -> Result { + self.run(bfile, self.make_req(&bfile, print_headers)) } } -- cgit v1.2.3