Files
topgrade/src/steps/mod.rs
2020-08-22 14:46:17 +03:00

15 lines
195 B
Rust

pub mod emacs;
pub mod generic;
pub mod git;
pub mod node;
pub mod os;
pub mod powershell;
pub mod remote;
#[cfg(unix)]
pub mod tmux;
pub mod vim;
#[cfg(unix)]
pub mod zsh;
pub use self::os::*;