goup 1.1.0

Like rustup or nvm but for Go. 🚀
1
2
3
4
5
6
7
8
crate::prelude!(current, env, ls, lsr, r#use, drop, clean, check);

use anyhow::Result;

/// Definition of an executable CLI sub command.
pub trait Command {
    fn run(&self) -> Result<()>;
}