1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-01 19:02:22 +01:00

Simplify public API module structure

This commit is contained in:
sharkdp
2020-03-21 21:03:57 +01:00
committed by David Peter
parent 90397a8aac
commit bb0a3d586e
5 changed files with 16 additions and 22 deletions

View File

@@ -18,13 +18,13 @@ pub mod controller;
mod decorations;
mod diff;
pub mod errors;
pub mod inputfile;
pub(crate) mod inputfile;
mod less;
pub mod line_range;
pub(crate) mod line_range;
mod output;
mod preprocessor;
mod printer;
pub mod style;
pub mod syntax_mapping;
pub(crate) mod style;
pub(crate) mod syntax_mapping;
mod terminal;
pub mod wrap;
pub(crate) mod wrap;