diff --git a/gdn-cli/src/commands/repo.rs b/gdn-cli/src/commands/repo.rs index 119e041..8122828 100644 --- a/gdn-cli/src/commands/repo.rs +++ b/gdn-cli/src/commands/repo.rs @@ -1,7 +1,7 @@ mod add; +mod info; mod list; mod remove; -mod show; use clap::Parser; @@ -13,8 +13,8 @@ pub enum Command { #[command(visible_alias = "l")] List(list::Command), - #[command(visible_alias = "s")] - Show(show::Command), + #[command(visible_alias = "i")] + Info(info::Command), #[command(visible_alias = "a")] Add(add::Command), @@ -27,7 +27,7 @@ impl Command { pub fn run(self, env: &Environment) -> anyhow::Result<()> { match self { Self::List(command) => command.run(env), - Self::Show(command) => command.run(env), + Self::Info(command) => command.run(env), Self::Add(command) => command.run(env), Self::Remove(command) => command.run(env), } diff --git a/gdn-cli/src/commands/repo/show.rs b/gdn-cli/src/commands/repo/info.rs similarity index 100% rename from gdn-cli/src/commands/repo/show.rs rename to gdn-cli/src/commands/repo/info.rs