diff options
author | Guillaume Pasquet <dev@etenil.net> | 2022-02-21 00:18:38 +0000 |
---|---|---|
committer | Guillaume Pasquet <dev@etenil.net> | 2022-02-21 00:18:38 +0000 |
commit | 883b9c65fce7f8596b7da5616efab8c4ecc616a4 (patch) | |
tree | 538ec099430b9e83577b3849a509d924cd3f97ec /src/executor.rs | |
parent | f69d2801069850b48c6424b50d0107799d56e2f8 (diff) |
Added support for JQ filtering.
Diffstat (limited to 'src/executor.rs')
-rw-r--r-- | src/executor.rs | 4 |
1 files changed, 2 insertions, 2 deletions
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<ureq::Response, String> { - self.run(&bfile, self.make_req(&bfile, print_headers)) + pub fn execute(&mut self, bfile: &BarbFile, print_headers: bool) -> Result<ureq::Response, String> { + self.run(bfile, self.make_req(&bfile, print_headers)) } } |