Files
topgrade/src/steps/mod.rs

20 lines
288 B
Rust
Raw Normal View History

pub mod containers;
pub mod emacs;
2018-12-15 21:52:21 +02:00
pub mod generic;
pub mod git;
2022-11-19 19:04:33 -05:00
pub mod go;
pub mod kakoune;
2018-12-15 21:52:21 +02:00
pub mod node;
pub mod os;
2019-08-14 21:36:57 +03:00
pub mod powershell;
2020-08-22 14:46:17 +03:00
pub mod remote;
2018-12-15 21:52:21 +02:00
#[cfg(unix)]
pub mod tmux;
#[cfg(target_os = "linux")]
pub mod toolbx;
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::*;