package util import config "git.loafle.net/overflow/overflow_commons_go/modules/config/model" func KeysToMap(keys []config.Keys) map[string]string { m := make(map[string]string) for _, key := range keys { m[key.Key] = key.Metric } return m }