Documentation
¶
Overview ¶
Package strategy provides functionality for managing tool installation strategies.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Strategy ¶
type Strategy string
Strategy represents the strategy for handling tool installation.
const ( // None indicates no strategy, meaning no action will be taken if the tool already exists. None Strategy = "none" // Sync indicates that the tool should only be modified if different from the desired state. Sync Strategy = "sync" // Force indicates that the tool should be installed or updated regardless of its current state. Force Strategy = "force" )
Click to show internal directories.
Click to hide internal directories.