mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 01:30:25 +08:00
19 lines
439 B
Go
19 lines
439 B
Go
package internal
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/tal-tech/go-zero/zrpc/internal/resolver"
|
|
)
|
|
|
|
func BuildDirectTarget(endpoints []string) string {
|
|
return fmt.Sprintf("%s:///%s", resolver.DirectScheme,
|
|
strings.Join(endpoints, resolver.EndpointSep))
|
|
}
|
|
|
|
func BuildDiscovTarget(endpoints []string, key string) string {
|
|
return fmt.Sprintf("%s://%s/%s", resolver.DiscovScheme,
|
|
strings.Join(endpoints, resolver.EndpointSep), key)
|
|
}
|