goup 1.3.0

Like rustup or nvm but for Go: A simple version manager for Go written in Rust! 🚀
1
2
3
4
5
6
7
8
#[derive(thiserror::Error, Debug)]
pub enum Error {
    #[error("unsupported shell")]
    UnsupportedShell,

    #[error(transparent)]
    UnexpectedError(#[from] anyhow::Error),
}