github.com/cloudfoundry-attic/cli-with-i18n@v6.32.1-0.20171002233121-7401370d3b85+incompatible/command/extended_commander.go (about) 1 package command 2 3 import "github.com/jessevdk/go-flags" 4 5 // ExtendedCommander extends the go-flags Command interface by forcing a Setup 6 // function on all commands. This setup function should setup all command 7 // dependencies. 8 type ExtendedCommander interface { 9 flags.Commander 10 Setup(Config, UI) error 11 }