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

15 lines
225 B
Go

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