mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-03 20:17:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			821 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			821 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package command
 | 
						|
 | 
						|
import (
 | 
						|
	"strings"
 | 
						|
 | 
						|
	"github.com/mitchellh/cli"
 | 
						|
	"github.com/posener/complete"
 | 
						|
)
 | 
						|
 | 
						|
var (
 | 
						|
	_ cli.Command             = (*PrintCommand)(nil)
 | 
						|
	_ cli.CommandAutocomplete = (*PrintCommand)(nil)
 | 
						|
)
 | 
						|
 | 
						|
type PrintCommand struct {
 | 
						|
	*BaseCommand
 | 
						|
}
 | 
						|
 | 
						|
func (c *PrintCommand) Synopsis() string {
 | 
						|
	return "Prints runtime configurations"
 | 
						|
}
 | 
						|
 | 
						|
func (c *PrintCommand) Help() string {
 | 
						|
	helpText := `
 | 
						|
Usage: vault print <subcommand>
 | 
						|
 | 
						|
	This command groups subcommands for interacting with Vault's runtime values.
 | 
						|
 | 
						|
Subcommands:
 | 
						|
	token    Token currently in use
 | 
						|
`
 | 
						|
	return strings.TrimSpace(helpText)
 | 
						|
}
 | 
						|
 | 
						|
func (c *PrintCommand) AutocompleteArgs() complete.Predictor {
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *PrintCommand) AutocompleteFlags() complete.Flags {
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (c *PrintCommand) Run(args []string) int {
 | 
						|
	return cli.RunResultHelp
 | 
						|
}
 |