mirror of
https://github.com/passbolt/go-passbolt-cli.git
synced 2025-09-13 23:09:08 +00:00
Implement copy to clipboard command for user
subcommand
This commit is contained in:
parent
043e303c9f
commit
0c718235b1
2 changed files with 154 additions and 0 deletions
|
@ -4,6 +4,7 @@ import (
|
|||
"github.com/passbolt/go-passbolt-cli/folder"
|
||||
"github.com/passbolt/go-passbolt-cli/group"
|
||||
"github.com/passbolt/go-passbolt-cli/resource"
|
||||
"github.com/passbolt/go-passbolt-cli/user"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
|
@ -27,4 +28,5 @@ func init() {
|
|||
toclipboardCmd.AddCommand(folder.FolderToClipboardCommand)
|
||||
toclipboardCmd.AddCommand(group.GroupToClipboardCommand)
|
||||
toclipboardCmd.AddCommand(resource.ResourceToClipboardCommand)
|
||||
toclipboardCmd.AddCommand(user.UserToClipboardCommand)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue