github.com/franc20/ayesa_sap@v7.0.0-beta.28.0.20200124003224-302d4d52fa6c+incompatible/command/v6/passwd_command.go (about) 1 package v6 2 3 import ( 4 "code.cloudfoundry.org/cli/command" 5 "code.cloudfoundry.org/cli/command/translatableerror" 6 ) 7 8 type PasswdCommand struct { 9 usage interface{} `usage:"CF_NAME passwd"` 10 } 11 12 func (PasswdCommand) Setup(config command.Config, ui command.UI) error { 13 return nil 14 } 15 16 func (PasswdCommand) Execute(args []string) error { 17 return translatableerror.UnrefactoredCommandError{} 18 }