Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions crates/auths-cli/src/commands/commit/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ use crate::commands::verify_commit::VerifyCommitCommand;
use crate::config::CliConfig;

#[derive(Args, Debug, Clone)]
#[command(about = "Low-level commit signing and verification")]
pub struct CommitCmd {
#[command(subcommand)]
pub command: CommitSubcommand,
Expand Down
1 change: 1 addition & 0 deletions crates/auths-cli/src/commands/debug/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ use crate::commands::utils::UtilCommand;
use crate::config::CliConfig;

#[derive(Args, Debug, Clone)]
#[command(about = "Internal debugging utilities")]
pub struct DebugCmd {
#[command(subcommand)]
pub command: DebugSubcommand,
Expand Down
1 change: 1 addition & 0 deletions crates/auths-cli/src/commands/learn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ use std::process::Command as ProcessCommand;

/// Interactive tutorial for learning Auths concepts.
#[derive(Parser, Debug, Clone)]
#[command(about = "Interactive tutorial for learning Auths concepts")]
pub struct LearnCommand {
/// Skip to a specific section (1-6).
#[clap(long, short, value_name = "SECTION")]
Expand Down
Loading