mirror of
https://github.com/passbolt/go-passbolt-cli.git
synced 2025-09-13 14:59:09 +00:00
add user commands
This commit is contained in:
parent
78a9b08a6f
commit
ce995fb1a5
12 changed files with 356 additions and 3 deletions
|
@ -4,6 +4,7 @@ import (
|
|||
"github.com/speatzle/go-passbolt-cli/folder"
|
||||
"github.com/speatzle/go-passbolt-cli/group"
|
||||
"github.com/speatzle/go-passbolt-cli/resource"
|
||||
"github.com/speatzle/go-passbolt-cli/user"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
|
@ -20,6 +21,7 @@ func init() {
|
|||
deleteCmd.AddCommand(resource.ResourceDeleteCmd)
|
||||
deleteCmd.AddCommand(folder.FolderDeleteCmd)
|
||||
deleteCmd.AddCommand(group.GroupDeleteCmd)
|
||||
deleteCmd.AddCommand(user.UserDeleteCmd)
|
||||
|
||||
deleteCmd.PersistentFlags().String("id", "", "ID of the Entity to Delete")
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue