// Copyright 2015 The Vanadium Authors. All rights reserved. | |
// Use of this source code is governed by a BSD-style | |
// license that can be found in the LICENSE file. | |
package namespace | |
import "v.io/v23/naming" | |
func convertServersToStrings(servers []naming.MountedServer, suffix string) (ret []string) { | |
for _, s := range servers { | |
ret = append(ret, naming.Join(s.Server, suffix)) | |
} | |
return | |
} |