open-vault/vendor/github.com/mitchellh/cli
Jeff Mitchell 9ebc57581d
Switch to go modules (#6585)
* Switch to go modules

* Make fmt
2019-04-13 03:44:06 -04:00
..
.travis.yml Switch to go modules (#6585) 2019-04-13 03:44:06 -04:00
autocomplete.go Bump deps 2017-07-18 10:15:54 -04:00
cli.go Bump Deps (#4868) 2018-07-06 12:09:34 -04:00
command.go Bump deps 2017-07-18 10:15:54 -04:00
command_mock.go Bump deps 2017-07-18 10:15:54 -04:00
go.mod Update Deps (#5454) 2018-10-03 09:55:26 -07:00
go.sum Update Deps (#5454) 2018-10-03 09:55:26 -07:00
help.go Update deps 2017-02-02 16:19:55 -05:00
LICENSE
Makefile Update vendoring 2016-04-26 00:18:04 +00:00
README.md Bump deps 2017-07-18 10:15:54 -04:00
ui.go
ui_colored.go Update CLI coloring 2018-04-06 14:38:56 -04:00
ui_concurrent.go
ui_mock.go Bump deps 2017-09-05 18:06:47 -04:00
ui_writer.go

Go CLI Library GoDoc

cli is a library for implementing powerful command-line interfaces in Go. cli is the library that powers the CLI for Packer, Serf, Consul, Vault, Terraform, and Nomad.

Features

  • Easy sub-command based CLIs: cli foo, cli bar, etc.

  • Support for nested subcommands such as cli foo bar.

  • Optional support for default subcommands so cli does something other than error.

  • Support for shell autocompletion of subcommands, flags, and arguments with callbacks in Go. You don't need to write any shell code.

  • Automatic help generation for listing subcommands

  • Automatic help flag recognition of -h, --help, etc.

  • Automatic version flag recognition of -v, --version.

  • Helpers for interacting with the terminal, such as outputting information, asking for input, etc. These are optional, you can always interact with the terminal however you choose.

  • Use of Go interfaces/types makes augmenting various parts of the library a piece of cake.

Example

Below is a simple example of creating and running a CLI

package main

import (
	"log"
	"os"

	"github.com/mitchellh/cli"
)

func main() {
	c := cli.NewCLI("app", "1.0.0")
	c.Args = os.Args[1:]
	c.Commands = map[string]cli.CommandFactory{
		"foo": fooCommandFactory,
		"bar": barCommandFactory,
	}

	exitStatus, err := c.Run()
	if err != nil {
		log.Println(err)
	}

	os.Exit(exitStatus)
}