summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBen S <ogham@bsago.me>2015-05-07 22:20:24 +0100
committerBen S <ogham@bsago.me>2015-05-07 22:20:24 +0100
commit9d1aadc808e9de615692ef993154025da1c6a26a (patch)
tree3c6f88bd84867a340b98fd8d62bbf691870bcd7a /src
parent7587f046b0b8b8a14ce96c725ee71df74ab1ff04 (diff)
The modules don't actually need to be public
Diffstat (limited to 'src')
-rw-r--r--src/main.rs16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/main.rs b/src/main.rs
index cda5a45..e8ee7e3 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -27,14 +27,14 @@ use file::File;
use options::{Options, View};
use output::lines_view;
-pub mod column;
-pub mod dir;
-pub mod feature;
-pub mod file;
-pub mod filetype;
-pub mod options;
-pub mod output;
-pub mod term;
+mod column;
+mod dir;
+mod feature;
+mod file;
+mod filetype;
+mod options;
+mod output;
+mod term;
#[cfg(not(test))]
struct Exa<'a> {