1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#![allow(clippy::new_without_default)]

#[cfg(feature = "bat-printer")]
pub mod bat;
pub mod chunk;
pub mod grep;
pub mod printer;
#[cfg(feature = "ripgrep")]
pub mod ripgrep;
#[cfg(feature = "syntect-printer")]
pub mod syntect;

#[cfg(test)]
mod test;

pub use anyhow::Error;
pub use anyhow::Result;