Skip to content

Commit

Permalink
feat: 为命令行参数增加提示信息
Browse files Browse the repository at this point in the history
  • Loading branch information
CC11001100 committed Feb 16, 2024
1 parent 80fd980 commit da03b99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/decrypt.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func init() {

var decryptCmd = &cobra.Command{
Use: "decrypt",
Short: "",
Short: "Decrypt plaintext using qwerty encryption algorithm",
Long: ``,
RunE: func(cmd *cobra.Command, args []string) error {

Expand Down
2 changes: 1 addition & 1 deletion cmd/encrypt.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func init() {

var encryptCmd = &cobra.Command{
Use: "encrypt",
Short: "",
Short: "Encrypt plaintext using qwerty encryption algorithm",
Long: ``,
RunE: func(cmd *cobra.Command, args []string) error {

Expand Down

0 comments on commit da03b99

Please sign in to comment.