aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorGuillaume Pasquet <dev@etenil.net>2022-02-24 23:39:33 +0000
committerGuillaume Pasquet <dev@etenil.net>2022-02-24 23:39:33 +0000
commit3517f9d9ff69eebae14e32a3b1550bd920ea3238 (patch)
treeb56d16e0b757bc8868e9f49a7cc20c0ae546c6ad /src/main.rs
parent649299965d2368f65b45d7f51b89eb69b491c7a4 (diff)
Fix #5: Add JSON syntax coloring
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index a02938a..b7ce5ba 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -77,11 +77,18 @@ fn run_file(args: &Args, executor: &mut Executor, file_name: &String) -> Result<
output.status(response.status(), response.status_text());
for header_name in response.headers_names() {
- output.resp_hdr(header_name.to_string(), response.header(header_name.as_str()).unwrap());
+ output.resp_hdr(
+ header_name.to_string(),
+ response.header(header_name.as_str()).unwrap(),
+ );
}
output.end_resp_hdr();
- output.body(apply_filters(args, &bfile, response.into_string().unwrap())?);
+ output.body(apply_filters(
+ args,
+ &bfile,
+ response.into_string().unwrap(),
+ )?);
Ok(())
}