44 lines
1.4 KiB
Go
44 lines
1.4 KiB
Go
// Code generated by protoc-gen-go-micro. DO NOT EDIT.
|
|
// protoc-gen-go-micro version: v4.10.2
|
|
// source: health.proto
|
|
|
|
package health
|
|
|
|
import (
|
|
context "context"
|
|
codec "go.unistack.org/micro-proto/v4/codec"
|
|
v4 "go.unistack.org/micro-server-http/v4"
|
|
server "go.unistack.org/micro/v4/server"
|
|
)
|
|
|
|
type healthServiceServer struct {
|
|
HealthServiceServer
|
|
}
|
|
|
|
func (h *healthServiceServer) Live(ctx context.Context, req *codec.Frame, rsp *codec.Frame) error {
|
|
return h.HealthServiceServer.Live(ctx, req, rsp)
|
|
}
|
|
|
|
func (h *healthServiceServer) Ready(ctx context.Context, req *codec.Frame, rsp *codec.Frame) error {
|
|
return h.HealthServiceServer.Ready(ctx, req, rsp)
|
|
}
|
|
|
|
func (h *healthServiceServer) Version(ctx context.Context, req *codec.Frame, rsp *codec.Frame) error {
|
|
return h.HealthServiceServer.Version(ctx, req, rsp)
|
|
}
|
|
|
|
func RegisterHealthServiceServer(s server.Server, sh HealthServiceServer, opts ...server.HandlerOption) error {
|
|
type healthService interface {
|
|
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
|
|
}
|
|
type HealthService struct {
|
|
healthService
|
|
}
|
|
h := &healthServiceServer{sh}
|
|
var nopts []server.HandlerOption
|
|
nopts = append(nopts, v4.HandlerEndpoints(HealthServiceServerEndpoints))
|
|
return s.Handle(s.NewHandler(&HealthService{h}, append(nopts, opts...)...))
|
|
}
|