Files
topgrade/src/steps/mod.rs
2022-02-06 23:48:06 +02:00

18 lines
256 B
Rust

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