2020-08-18 18:36:44 +08:00
|
|
|
package internal
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/tal-tech/go-zero/rpcx/internal/resolver"
|
|
|
|
)
|
|
|
|
|
|
|
|
func BuildDirectTarget(endpoints []string) string {
|
2020-08-25 18:36:30 +08:00
|
|
|
return fmt.Sprintf("%s:///%s", resolver.DirectScheme,
|
|
|
|
strings.Join(endpoints, resolver.EndpointSep))
|
2020-08-18 18:36:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func BuildDiscovTarget(endpoints []string, key string) string {
|
2020-08-25 18:36:30 +08:00
|
|
|
return fmt.Sprintf("%s://%s/%s", resolver.DiscovScheme,
|
|
|
|
strings.Join(endpoints, resolver.EndpointSep), key)
|
2020-08-18 18:36:44 +08:00
|
|
|
}
|