MCPcopy Create free account
hub / github.com/chainreactors/EvilProxy / cloneStringMap

Function cloneStringMap

internal/pluginhost/adapters.go:2375–2384  ·  view source on GitHub ↗
(in map[string]string)

Source from the content-addressed store, hash-verified

2373}
2374
2375func cloneStringMap(in map[string]string) map[string]string {
2376 if len(in) == 0 {
2377 return nil
2378 }
2379 out := make(map[string]string, len(in))
2380 for key, value := range in {
2381 out[key] = value
2382 }
2383 return out
2384}

Callers 7

authDataWithDefaultsFunction · 0.85
callModelsForAuthMethod · 0.85
AuthenticateMethod · 0.85
RefreshMethod · 0.85
authAttributesFunction · 0.85
RefreshAuthMethod · 0.85
pluginAuthDataToCoreAuthFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected