Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ShowLocalModulesConfig ¶
func ShowLocalModulesConfig() error
ShowLocalModulesConfig prints the path to go_update_all.json and creates the file and its directory if not exists yet
Types ¶
type LocalModulesConfig ¶
type LocalModulesConfig struct {
LocalModules []string `json:"local_module_paths"`
}
LocalModulesConfig represents the configuration for local modules operations
func GetLocalModulesConfig ¶
func GetLocalModulesConfig() (*LocalModulesConfig, error)
GetLocalModulesConfig reads the local modules configuration from the config file
type ModuleUpdateInfo ¶
type ModuleUpdateInfo struct {
ModulePath string // The module path (e.g., github.com/user/repo)
LocalPath string // Local filesystem path
CurrentVersion string // Current version in go.mod
LatestVersion string // Latest clean version (without prefix)
LatestTag string // Latest tag to update to
IsReplacement bool // Whether this is currently a replacement
}
ModuleUpdateInfo represents information about a module that needs updating
Click to show internal directories.
Click to hide internal directories.