func()

in cli/cmd/state.go [36:44]


func (e *Output) Set(v string) error {
	switch v {
	case "table", "json":
		*e = Output(v)
		return nil
	default:
		return errors.New(`must be one of "table" or "json"`)
	}
}