1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
mod env;
mod file;
mod os;
mod path;

// Export contents of modules into sys
pub use env::*;
pub use file::*;
pub use os::*;
pub use path::*;

// Export modules directly
pub mod exec;
pub mod libc;
pub mod user;

// Export extensions
pub mod ext {
    pub use super::path::{PathColorExt, PathExt};
}