1 2 3 4 5 6 7 8 9 10 11 12 13
mod config; mod editor; mod formatting; mod general; #[cfg(target_os = "windows")] mod windows_install; pub use config::*; pub use editor::*; pub use formatting::*; pub use general::*; #[cfg(target_os = "windows")] pub use windows_install::*;