MCPcopy Create free account
hub / github.com/Chat2AnyLLM/code-agent-manager / InstallationCheck

Struct InstallationCheck

internal/doctor/checks.go:28–31  ·  view source on GitHub ↗

InstallationCheck reports CAM's version and the host's Go runtime version. Version is the binary's own version string; HostExe is os.Executable() at runtime, but tests may override either field to keep output deterministic.

Source from the content-addressed store, hash-verified

26// Version is the binary's own version string; HostExe is os.Executable() at
27// runtime, but tests may override either field to keep output deterministic.
28type InstallationCheck struct {
29 Version string
30 HostExe string
31}
32
33func (c InstallationCheck) Name() string { return "Installation Check" }
34func (c InstallationCheck) Run(_ context.Context, r Reporter) Result {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected