summaryrefslogtreecommitdiffstats
path: root/src/output/lines.rs
diff options
context:
space:
mode:
authorBenjamin Sago <ogham@bsago.me>2016-04-16 18:59:25 +0100
committerBenjamin Sago <ogham@bsago.me>2016-04-16 18:59:25 +0100
commitefa372cb3bbb3e09050d4915ae06736d1fd29ffe (patch)
tree34980e20ee2da6d76d512f87315204aec0625d0c /src/output/lines.rs
parentb65043d6d9b7bcd8c87ec2a9cf7f6bf826417b47 (diff)
Source file rearrangements
This commit moves file, dir, and the feature modules into one parent 'fs' module. Now there are three main 'areas' of the code: main and options, the filesystem-touching code, and the output-displaying code. It should be the case that nothing in 'output' touches 'std::fs'.
Diffstat (limited to 'src/output/lines.rs')
-rw-r--r--src/output/lines.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output/lines.rs b/src/output/lines.rs
index 97820cd..81e51d0 100644
--- a/src/output/lines.rs
+++ b/src/output/lines.rs
@@ -1,6 +1,6 @@
use ansi_term::ANSIStrings;
-use file::File;
+use fs::File;
use super::filename;
use super::colours::Colours;