49 lines
1005 B
Go
49 lines
1005 B
Go
|
// Code generated by protoc-gen-go-micro. DO NOT EDIT.
|
||
|
// versions:
|
||
|
// - protoc-gen-go-micro v3.10.2
|
||
|
// - protoc v3.21.12
|
||
|
// source: health.proto
|
||
|
|
||
|
package health
|
||
|
|
||
|
import (
|
||
|
context "context"
|
||
|
codec "go.unistack.org/micro-proto/v3/codec"
|
||
|
v3 "go.unistack.org/micro-server-http/v3"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
HealthServiceName = "HealthService"
|
||
|
)
|
||
|
var (
|
||
|
HealthServiceServerEndpoints = []v3.EndpointMetadata{
|
||
|
{
|
||
|
Name: "HealthService.Live",
|
||
|
Path: "/live",
|
||
|
Method: "GET",
|
||
|
Body: "",
|
||
|
Stream: false,
|
||
|
},
|
||
|
{
|
||
|
Name: "HealthService.Ready",
|
||
|
Path: "/ready",
|
||
|
Method: "GET",
|
||
|
Body: "",
|
||
|
Stream: false,
|
||
|
},
|
||
|
{
|
||
|
Name: "HealthService.Version",
|
||
|
Path: "/version",
|
||
|
Method: "GET",
|
||
|
Body: "",
|
||
|
Stream: false,
|
||
|
},
|
||
|
}
|
||
|
)
|
||
|
|
||
|
type HealthServiceServer 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
|
||
|
}
|