add resource commands

This commit is contained in:
Samuel Lorch 2021-09-08 11:07:38 +02:00
parent f952b51065
commit b0303103da
14 changed files with 521 additions and 1 deletions

View file

@ -1,6 +1,7 @@
package cmd
import (
"github.com/speatzle/go-passbolt-cli/resource"
"github.com/spf13/cobra"
)
@ -15,4 +16,5 @@ var listCmd = &cobra.Command{
func init() {
rootCmd.AddCommand(listCmd)
listCmd.AddCommand(resource.ResourceListCmd)
}