go-passbolt-cli/cmd/delete.go
2021-09-08 10:54:20 +02:00

19 lines
381 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
// deleteCmd represents the delete command
var deleteCmd = &cobra.Command{
Use: "delete",
Short: "Deletes a Passbolt Entity",
Long: `Deletes a Passbolt Entity`,
Aliases: []string{"remove"},
}
func init() {
rootCmd.AddCommand(deleteCmd)
deleteCmd.PersistentFlags().String("id", "", "ID of the Entity to Delete")
}