github.com/goonzoid/gcli@v0.2.3-0.20150926213610-155587606ea1/command/meta.go (about)

     1  package command
     2  
     3  import "github.com/mitchellh/cli"
     4  
     5  // ExitCodes
     6  const (
     7  	ExitCodeOK     int = 0
     8  	ExitCodeFailed int = 1
     9  )
    10  
    11  const (
    12  	// defaultFrameworkString is default cli framework name
    13  	defaultFrameworkString = "codegangsta_cli"
    14  )
    15  
    16  // Meta contain the meta-option that nealy all subcommand inherited.
    17  type Meta struct {
    18  	UI cli.Ui
    19  }