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

18 lines
314 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
// listCmd represents the list command
var listCmd = &cobra.Command{
Use: "list",
Short: "Lists Passbolt Entitys",
Long: `Lists Passbolt Entitys`,
Aliases: []string{"index", "ls", "filter", "search"},
}
func init() {
rootCmd.AddCommand(listCmd)
}