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

Function joinComma

internal/cli/global.go:94–103  ·  view source on GitHub ↗
(items []string)

Source from the content-addressed store, hash-verified

92}
93
94func joinComma(items []string) string {
95 out := ""
96 for i, it := range items {
97 if i > 0 {
98 out += ", "
99 }
100 out += it
101 }
102 return out
103}

Callers 3

printEndpointTableFunction · 0.85
doctorCommandMethod · 0.85
writeProviderTableFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected