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

Function envMapToSlice

internal/tools/launch.go:109–115  ·  view source on GitHub ↗
(env map[string]string)

Source from the content-addressed store, hash-verified

107}
108
109func envMapToSlice(env map[string]string) []string {
110 out := make([]string, 0, len(env))
111 for k, v := range env {
112 out = append(out, k+"="+v)
113 }
114 return out
115}

Callers 1

RunFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected