summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorFahmi Akbar Wildana <f.a.wildana@gmail.com>2019-10-06 08:44:14 +0700
committerDavid Peter <sharkdp@users.noreply.github.com>2019-10-20 21:43:51 +0200
commite5426211250c907442717c566a13d38d52d4524d (patch)
tree18809108f656e8771ed53bf32ac9082ed8f35cc2 /src/lib.rs
parent26439b41d2b5a7d68f8e6fe22ccd1299bd7c5ccc (diff)
Move back printer.rs and others into lib
others: bin/bat/{controller,decorations,output,printer}.rs
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 99e17f19..553cd3a5 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -19,11 +19,15 @@ extern crate syntect;
extern crate wild;
pub mod assets;
+pub mod controller;
+pub mod decorations;
pub mod diff;
pub mod dirs;
pub mod inputfile;
pub mod line_range;
+pub mod output;
pub mod preprocessor;
+pub mod printer;
pub mod style;
pub mod syntax_mapping;
pub mod terminal;
@@ -119,4 +123,4 @@ pub struct Config<'a> {
/// Lines to highlight
pub highlight_lines: Vec<usize>,
-} \ No newline at end of file
+}