mirror of
https://github.com/passbolt/go-passbolt-cli.git
synced 2025-05-12 10:58:21 +00:00
15 lines
225 B
Go
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() {
|
|
}
|