Skip to content

Commit

Permalink
feat(ockam/credential): Set the vault argument value name and add doc…
Browse files Browse the repository at this point in the history
… string

Set the `VAULT_NAME` argument in the Ockam credential issue module and
added a doc string describing the name of the Vault to be used for issuing
credentials.

This change improves code readability and documentation for Vault usage.
  • Loading branch information
AshwinKul28 committed Oct 9, 2023
1 parent cb43e5f commit a4a0e2e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ pub struct IssueCommand {
#[arg(short, long = "attribute", value_name = "ATTRIBUTE")]
pub attributes: Vec<String>,

#[arg()]
/// Name of the Vault that will be used to issue the credential.
#[arg(name = "VAULT_NAME")]
pub vault: Option<String>,

/// Encoding Format
Expand Down

0 comments on commit a4a0e2e

Please sign in to comment.