mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-08 23:50:00 +08:00
10 lines
144 B
Go
10 lines
144 B
Go
|
|
package mongo
|
||
|
|
|
||
|
|
import "strings"
|
||
|
|
|
||
|
|
const mongoAddrSep = ","
|
||
|
|
|
||
|
|
func FormatAddr(hosts []string) string {
|
||
|
|
return strings.Join(hosts, mongoAddrSep)
|
||
|
|
}
|