aftman 0.2.2

Aftman is a command line toolchain manager
1
2
3
4
5
6
7
8
9
10
11
#[cfg(target_os = "windows")]
mod windows;

#[cfg(target_os = "windows")]
pub use windows::add;

#[cfg(not(target_os = "windows"))]
pub fn add(path: &std::path::Path) -> anyhow::Result<bool> {
    log::debug!("Not adding value to path because this platform is not supported.");
    Ok(false)
}