Implement copy to clipboard command for user

subcommand
This commit is contained in:
PiMaDaum 2023-02-19 01:26:06 +01:00
parent 043e303c9f
commit 0c718235b1
2 changed files with 154 additions and 0 deletions

View file

@ -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)
}