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

17 lines
301 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
// createCmd represents the create command
var createCmd = &cobra.Command{
Use: "create",
Short: "Creates a Passbolt Entity",
Long: `Creates a Passbolt Entity`,
Aliases: []string{"new"},
}
func init() {
rootCmd.AddCommand(createCmd)
}