package utils // getMapKeys returns the keys of a map func MapKeys[T any](m map[string]T) []string { keys := make([]string, 0, len(m)) for key := range m { keys = append(keys, key) } return keys }