const _ … const Health_Check_FullMethodName … const Health_Watch_FullMethodName … type HealthClient … type healthClient … func NewHealthClient(cc grpc.ClientConnInterface) HealthClient { … } func (c *healthClient) Check(ctx context.Context, in *HealthCheckRequest, opts ...grpc.CallOption) (*HealthCheckResponse, error) { … } func (c *healthClient) Watch(ctx context.Context, in *HealthCheckRequest, opts ...grpc.CallOption) (Health_WatchClient, error) { … } type Health_WatchClient … type healthWatchClient … func (x *healthWatchClient) Recv() (*HealthCheckResponse, error) { … } type HealthServer … type UnimplementedHealthServer … func (UnimplementedHealthServer) Check(context.Context, *HealthCheckRequest) (*HealthCheckResponse, error) { … } func (UnimplementedHealthServer) Watch(*HealthCheckRequest, Health_WatchServer) error { … } type UnsafeHealthServer … func RegisterHealthServer(s grpc.ServiceRegistrar, srv HealthServer) { … } func _Health_Check_Handler(srv interface{ … } func _Health_Watch_Handler(srv interface{ … } type Health_WatchServer … type healthWatchServer … func (x *healthWatchServer) Send(m *HealthCheckResponse) error { … } var Health_ServiceDesc …