mirror of
https://github.com/passbolt/go-passbolt-cli.git
synced 2025-05-12 10:58:21 +00:00
Correct subcommand var in init funtion
This commit is contained in:
parent
06f9466c8f
commit
57e7978ce6
1 changed files with 2 additions and 2 deletions
|
@ -23,8 +23,8 @@ var FolderToClipboardCommand = &cobra.Command{
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
FolderListCmd.Flags().StringP("search", "s", "", "Folders that have this in the Name")
|
FolderToClipboardCommand.Flags().StringP("search", "s", "", "Folders that have this in the Name")
|
||||||
FolderListCmd.Flags().StringArrayP("column", "c", []string{"Name"}, "Columns to return, possible Columns:\nID, FolderParentID, Name, CreatedTimestamp, ModifiedTimestamp")
|
FolderToClipboardCommand.Flags().StringArrayP("column", "c", []string{"Name"}, "Columns to return, possible Columns:\nID, FolderParentID, Name, CreatedTimestamp, ModifiedTimestamp")
|
||||||
}
|
}
|
||||||
|
|
||||||
func FolderToClipboard(cmd *cobra.Command, args []string) error {
|
func FolderToClipboard(cmd *cobra.Command, args []string) error {
|
||||||
|
|
Loading…
Add table
Reference in a new issue