Files
topgrade/src/steps/mod.rs

15 lines
196 B
Rust
Raw Normal View History

pub mod emacs;
2018-12-15 21:52:21 +02:00
pub mod generic;
pub mod git;
pub mod node;
pub mod os;
2019-08-14 21:36:57 +03:00
pub mod powershell;
2018-12-15 21:52:21 +02:00
#[cfg(unix)]
pub mod tmux;
2020-06-10 11:51:52 +03:00
pub mod vagrant;
2018-12-15 21:52:21 +02:00
pub mod vim;
2019-10-01 20:50:44 +03:00
#[cfg(unix)]
pub mod zsh;
2018-12-15 21:52:21 +02:00
pub use self::os::*;