add basic operational commands

This commit is contained in:
Samuel Lorch 2021-09-08 10:54:20 +02:00
parent 64c878c9d5
commit 219c451098
12 changed files with 898 additions and 0 deletions

17
cmd/update.go Normal file
View file

@ -0,0 +1,17 @@
package cmd
import (
"github.com/spf13/cobra"
)
// updateCmd represents the update command
var updateCmd = &cobra.Command{
Use: "update",
Short: "Updates a Passbolt Entity",
Long: `Updates a Passbolt Entity`,
Aliases: []string{"change"},
}
func init() {
rootCmd.AddCommand(updateCmd)
}