1234567891011121314151617181920 |
- package internal
- import (
- "fmt"
- "strings"
- "git.i2edu.net/i2/go-zero/zrpc/internal/resolver"
- )
- // BuildDirectTarget returns a string that represents the given endpoints with direct schema.
- func BuildDirectTarget(endpoints []string) string {
- return fmt.Sprintf("%s:///%s", resolver.DirectScheme,
- strings.Join(endpoints, resolver.EndpointSep))
- }
- // BuildDiscovTarget returns a string that represents the given endpoints with discov schema.
- func BuildDiscovTarget(endpoints []string, key string) string {
- return fmt.Sprintf("%s://%s/%s", resolver.DiscovScheme,
- strings.Join(endpoints, resolver.EndpointSep), key)
- }
|