diff options
Diffstat (limited to 'crates/arti/src/subcommands/hss.rs')
| -rw-r--r-- | crates/arti/src/subcommands/hss.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/crates/arti/src/subcommands/hss.rs b/crates/arti/src/subcommands/hss.rs index f7b95f883..a5842fda7 100644 --- a/crates/arti/src/subcommands/hss.rs +++ b/crates/arti/src/subcommands/hss.rs @@ -25,17 +25,19 @@ pub(crate) enum HssSubcommands { Hss(Hss), } +/// The `hss` subcommand and args. #[derive(Debug, Parser)] pub(crate) struct Hss { /// Arguments shared by all hss subcommands. #[command(flatten)] common: CommonArgs, - /// Return the identity key for the specified service. + /// The `hss` subcommand to run. #[command(subcommand)] command: HssSubcommand, } +/// The `hss` subcommand. #[derive(Subcommand, Debug, Clone)] pub(crate) enum HssSubcommand { /// Print the .onion address of a hidden service |
