MCPcopy
hub / github.com/keploy/keploy / Keys

Function Keys

utils/utils.go:689–695  ·  view source on GitHub ↗

Keys returns an array containing the keys of the given map.

(m map[string][]string)

Source from the content-addressed store, hash-verified

687
688// Keys returns an array containing the keys of the given map.
689func Keys(m map[string][]string) []string {
690 keys := make([]string, 0, len(m))
691 for k := range m {
692 keys = append(keys, k)
693 }
694 return keys
695}
696
697func SentryInit(logger *zap.Logger, dsn string) {
698 err := sentry.Init(sentry.ClientOptions{

Callers 2

AddFlagsMethod · 0.92
AddUncommonFlagsMethod · 0.92

Calls

no outgoing calls

Tested by

no test coverage detected