mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-03 03:58:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			733 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			733 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package main
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	"os"
 | 
						|
 | 
						|
	"github.com/mitchellh/cli"
 | 
						|
)
 | 
						|
 | 
						|
func main() {
 | 
						|
	os.Exit(realMain())
 | 
						|
}
 | 
						|
 | 
						|
func realMain() int {
 | 
						|
	// Get the command line args. We shortcut "--version" and "-v" to
 | 
						|
	// just show the version.
 | 
						|
	args := os.Args[1:]
 | 
						|
	for _, arg := range args {
 | 
						|
		if arg == "-v" || arg == "--version" {
 | 
						|
			newArgs := make([]string, len(args)+1)
 | 
						|
			newArgs[0] = "version"
 | 
						|
			copy(newArgs[1:], args)
 | 
						|
			args = newArgs
 | 
						|
			break
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	cli := &cli.CLI{
 | 
						|
		Args:     args,
 | 
						|
		Commands: Commands,
 | 
						|
		HelpFunc: cli.FilteredHelpFunc(
 | 
						|
			CommandsInclude, cli.BasicHelpFunc("vault")),
 | 
						|
	}
 | 
						|
 | 
						|
	exitCode, err := cli.Run()
 | 
						|
	if err != nil {
 | 
						|
		fmt.Fprintf(os.Stderr, "Error executing CLI: %s\n", err.Error())
 | 
						|
		return 1
 | 
						|
	}
 | 
						|
 | 
						|
	return exitCode
 | 
						|
}
 |