Run cargo fmt

This commit is contained in:
Fahmi Akbar Wildana
2019-10-09 11:38:09 +07:00
committed by David Peter
parent e542621125
commit 0273848f54
3 changed files with 3 additions and 3 deletions

View File

@ -1,13 +1,13 @@
use std::io::{self, Write};
use std::path::Path;
use crate::{Config, PagingMode};
use crate::assets::HighlightingAssets;
use crate::errors::*;
use crate::inputfile::{InputFile, InputFileReader};
use crate::line_range::{LineRanges, RangeCheckResult};
use crate::output::OutputType;
use crate::printer::{InteractivePrinter, Printer, SimplePrinter};
use crate::{Config, PagingMode};
pub struct Controller<'a> {
config: &'a Config<'a>,