go-zero/zrpc/internal/target.go

21 lines
627 B
Go
Raw Normal View History

2020-08-18 18:36:44 +08:00
package internal
import (
"fmt"
"strings"
2020-09-18 11:41:52 +08:00
"github.com/tal-tech/go-zero/zrpc/internal/resolver"
2020-08-18 18:36:44 +08:00
)
2021-03-01 23:52:44 +08:00
// BuildDirectTarget returns a string that represents the given endpoints with direct schema.
2020-08-18 18:36:44 +08:00
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
}
2021-03-01 23:52:44 +08:00
// BuildDiscovTarget returns a string that represents the given endpoints with discov schema.
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
}