github.com/ablease/cli@v6.37.1-0.20180613014814-3adbb7d7fb19+incompatible/command/v2/delete_buildpack_command.go (about)

     1  package v2
     2  
     3  import (
     4  	"code.cloudfoundry.org/cli/command"
     5  	"code.cloudfoundry.org/cli/command/flag"
     6  	"code.cloudfoundry.org/cli/command/translatableerror"
     7  )
     8  
     9  type DeleteBuildpackCommand struct {
    10  	RequiredArgs    flag.BuildpackName `positional-args:"yes"`
    11  	Force           bool               `short:"f" description:"Force deletion without confirmation"`
    12  	Stack           string             `short:"s" description:"Specify stack to disambiguate buildpacks with the same name"`
    13  	usage           interface{}        `usage:"CF_NAME delete-buildpack BUILDPACK [-f] [-s STACK]"`
    14  	relatedCommands interface{}        `related_commands:"buildpacks"`
    15  }
    16  
    17  func (DeleteBuildpackCommand) Setup(config command.Config, ui command.UI) error {
    18  	return nil
    19  }
    20  
    21  func (DeleteBuildpackCommand) Execute(args []string) error {
    22  	return translatableerror.UnrefactoredCommandError{}
    23  }