Put all the rendering functions into their own module

This commit is contained in:
Benjamin Sago 2017-05-20 21:45:08 +01:00
parent fda88bedc2
commit fdd053d735
6 changed files with 5 additions and 4 deletions

View File

@ -16,7 +16,4 @@ mod colours;
mod tree;
pub mod file_name;
mod escape;
mod users;
mod groups;
mod permissions;
mod size;
mod render;

4
src/output/render/mod.rs Normal file
View File

@ -0,0 +1,4 @@
mod groups;
mod permissions;
mod size;
mod users;