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

16 lines
261 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
// shareCmd represents the share command
var shareCmd = &cobra.Command{
Use: "share",
Short: "Shares a Passbolt Entity",
Long: `Shares a Passbolt Entity`,
}
func init() {
rootCmd.AddCommand(shareCmd)
}