constants.go 441 B

123456789101112
  1. package constants
  2. // 服务命名中的scheme和服务名,都可随意定义
  3. const (
  4. ExampleScheme = "grpc"
  5. ExampleServiceName = "go-example"
  6. )
  7. // 实际的服务终结点地址
  8. //var ExampleEndpoints = []string{"localhost:50051", "localhost:50052"}
  9. //var ExampleEndpoints = []string{"localhost:50051", "localhost:50052", "localhost:50053"}
  10. var ExampleEndpoints = []string{"localhost:50051", "localhost:50052", "localhost:50053"}