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