// Code generated by protoc-gen-go-micro. DO NOT EDIT. // versions: <<<<<<< HEAD // - protoc-gen-go-micro v4.0.2 // - protoc v4.23.4 ======= // - protoc-gen-go-micro v3.10.4 // - protoc v5.28.3 >>>>>>> rem/v3 // source: health/health.proto package health_handler import ( context "context" <<<<<<< HEAD codec "go.unistack.org/micro-proto/v4/codec" ======= codec "go.unistack.org/micro-proto/v3/codec" client "go.unistack.org/micro/v3/client" >>>>>>> rem/v3 ) var ( HealthServiceName = "HealthService" ) <<<<<<< HEAD ======= type HealthServiceClient interface { Healthy(ctx context.Context, req *codec.Frame, opts ...client.CallOption) (*codec.Frame, error) Live(ctx context.Context, req *codec.Frame, opts ...client.CallOption) (*codec.Frame, error) Ready(ctx context.Context, req *codec.Frame, opts ...client.CallOption) (*codec.Frame, error) Version(ctx context.Context, req *codec.Frame, opts ...client.CallOption) (*codec.Frame, error) } >>>>>>> rem/v3 type HealthServiceServer interface { Healthy(ctx context.Context, req *codec.Frame, rsp *codec.Frame) error Live(ctx context.Context, req *codec.Frame, rsp *codec.Frame) error Ready(ctx context.Context, req *codec.Frame, rsp *codec.Frame) error Version(ctx context.Context, req *codec.Frame, rsp *codec.Frame) error }