Files
topgrade/src/steps/mod.rs

14 lines
179 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;
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::*;