You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
439 B
Go
19 lines
439 B
Go
4 years ago
|
package internal
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"strings"
|
||
|
|
||
4 years ago
|
"github.com/tal-tech/go-zero/zrpc/internal/resolver"
|
||
4 years ago
|
)
|
||
|
|
||
|
func BuildDirectTarget(endpoints []string) string {
|
||
4 years ago
|
return fmt.Sprintf("%s:///%s", resolver.DirectScheme,
|
||
|
strings.Join(endpoints, resolver.EndpointSep))
|
||
4 years ago
|
}
|
||
|
|
||
|
func BuildDiscovTarget(endpoints []string, key string) string {
|
||
4 years ago
|
return fmt.Sprintf("%s://%s/%s", resolver.DiscovScheme,
|
||
|
strings.Join(endpoints, resolver.EndpointSep), key)
|
||
4 years ago
|
}
|