From 0f06d3b90da3ed0d89bc4722c8cbc83ec1b8e234 Mon Sep 17 00:00:00 2001 From: Ethan P Date: Sat, 16 May 2020 15:09:24 -0700 Subject: [PATCH] Reexport bat::pretty_printer::Input as bat::Input --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index da736319..6d6dd206 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -40,7 +40,7 @@ pub(crate) mod syntax_mapping; mod terminal; pub(crate) mod wrapping; -pub use pretty_printer::PrettyPrinter; +pub use pretty_printer::{Input, PrettyPrinter}; pub use syntax_mapping::{MappingTarget, SyntaxMapping}; pub use wrapping::WrappingMode;