1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-04 04:12:31 +01:00

Move InputFile to separate module

This commit is contained in:
sharkdp
2018-10-07 11:21:41 +02:00
committed by David Peter
parent 1be346a038
commit 860f3e9006
6 changed files with 15 additions and 11 deletions

View File

@@ -1,9 +1,10 @@
use std::fs::File;
use std::io::{self, BufRead, BufReader, Write};
use app::{Config, InputFile};
use app::Config;
use assets::HighlightingAssets;
use errors::*;
use inputfile::InputFile;
use line_range::LineRange;
use output::OutputType;
use printer::{InteractivePrinter, Printer, SimplePrinter};