Documentation
¶
Overview ¶
Package cli provides the command-line interface for the teamvault utility.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Execute ¶
func Execute()
Execute runs the CLI application. It sets up signal handling for SIGINT and SIGTERM, configures structured logging, and executes the root command. The sole context.Background() is created here and passed to Run.
func NewRootCommand ¶
NewRootCommand creates the root cobra command with all persistent flags and subcommands registered.
func ResetNewWriterForTest ¶ added in v5.8.0
func ResetNewWriterForTest()
ResetNewWriterForTest is an alias for the reset function returned by SetNewWriterForTest.
func Run ¶
Run builds the root command and executes it with the given arguments. It returns any error from command execution.
func SetNewWriterForTest ¶ added in v5.8.0
func SetNewWriterForTest( f func(sf *SharedFlags) func(context.Context) (teamvault.Writer, error), ) func()
SetNewWriterForTest overrides the writer constructor for tests. Returns a function to call in AfterEach to reset.
Types ¶
type SharedFlags ¶ added in v5.8.0
type SharedFlags struct {
// contains filtered or unexported fields
}
SharedFlags holds the seven shared CLI flags that apply to all subcommands. Each flag falls back to its corresponding environment variable when not set.