Files
go-zero/core/stores/mongo/util.go
2021-02-28 23:02:49 +08:00

11 lines
191 B
Go

package mongo
import "strings"
const mongoAddrSep = ","
// FormatAddr formats mongo hosts to a string.
func FormatAddr(hosts []string) string {
return strings.Join(hosts, mongoAddrSep)
}