cli: Add `inbox` to help output
This commit is contained in:
parent
9cdf0aa1fd
commit
f01aac8828
|
|
@ -11,7 +11,7 @@ use crate::terminal::args::{Args, Error, Help};
|
||||||
|
|
||||||
pub const HELP: Help = Help {
|
pub const HELP: Help = Help {
|
||||||
name: "clean",
|
name: "clean",
|
||||||
description: "Clean a repository",
|
description: "Remove all remotes from a repository",
|
||||||
version: env!("RADICLE_VERSION"),
|
version: env!("RADICLE_VERSION"),
|
||||||
usage: r#"
|
usage: r#"
|
||||||
Usage
|
Usage
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,7 @@ const COMMANDS: &[Help] = &[
|
||||||
rad_help::HELP,
|
rad_help::HELP,
|
||||||
rad_id::HELP,
|
rad_id::HELP,
|
||||||
rad_init::HELP,
|
rad_init::HELP,
|
||||||
|
rad_inbox::HELP,
|
||||||
rad_inspect::HELP,
|
rad_inspect::HELP,
|
||||||
rad_issue::HELP,
|
rad_issue::HELP,
|
||||||
rad_ls::HELP,
|
rad_ls::HELP,
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ use crate::terminal::args::{Args, Error, Help};
|
||||||
|
|
||||||
pub const HELP: Help = Help {
|
pub const HELP: Help = Help {
|
||||||
name: "inbox",
|
name: "inbox",
|
||||||
description: "Manage your Radicle notifications inbox",
|
description: "Manage your Radicle notifications",
|
||||||
version: env!("RADICLE_VERSION"),
|
version: env!("RADICLE_VERSION"),
|
||||||
usage: r#"
|
usage: r#"
|
||||||
Usage
|
Usage
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ use crate::terminal::Interactive;
|
||||||
|
|
||||||
pub const HELP: Help = Help {
|
pub const HELP: Help = Help {
|
||||||
name: "init",
|
name: "init",
|
||||||
description: "Initialize Radicle repositories",
|
description: "Initialize a Radicle repository",
|
||||||
version: env!("RADICLE_VERSION"),
|
version: env!("RADICLE_VERSION"),
|
||||||
usage: r#"
|
usage: r#"
|
||||||
Usage
|
Usage
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue