2021-08-16 18:57:19 +03:00
|
|
|
// Code generated by protoc-gen-go-micro. DO NOT EDIT.
|
2023-02-21 02:10:24 +03:00
|
|
|
// versions:
|
|
|
|
// - protoc-gen-go-micro v3.5.3
|
|
|
|
// - protoc v3.21.12
|
2021-03-28 19:17:08 +03:00
|
|
|
// source: health.proto
|
2021-08-16 18:57:19 +03:00
|
|
|
|
2021-03-28 19:28:01 +03:00
|
|
|
package health
|
2021-03-28 19:17:08 +03:00
|
|
|
|
|
|
|
import (
|
|
|
|
context "context"
|
2021-10-02 19:55:07 +03:00
|
|
|
codec "go.unistack.org/micro/v3/codec"
|
2023-02-21 02:10:24 +03:00
|
|
|
http "net/http"
|
2021-03-28 19:17:08 +03:00
|
|
|
)
|
|
|
|
|
2021-08-16 18:57:19 +03:00
|
|
|
var (
|
2023-02-21 13:18:03 +03:00
|
|
|
HealthServiceName = "HealthService"
|
2023-02-21 02:10:24 +03:00
|
|
|
)
|
|
|
|
var (
|
2023-02-21 13:18:03 +03:00
|
|
|
HealthServiceServerEndpoints = map[string]map[string]string{
|
2023-02-21 02:10:24 +03:00
|
|
|
"/live": map[string]string{
|
|
|
|
"Method": http.MethodGet,
|
|
|
|
"Stream": "false",
|
2021-03-28 19:17:08 +03:00
|
|
|
},
|
2023-02-21 02:10:24 +03:00
|
|
|
"/ready": map[string]string{
|
|
|
|
"Method": http.MethodGet,
|
|
|
|
"Stream": "false",
|
2021-03-28 19:17:08 +03:00
|
|
|
},
|
2023-02-21 02:10:24 +03:00
|
|
|
"/version": map[string]string{
|
|
|
|
"Method": http.MethodGet,
|
|
|
|
"Stream": "false",
|
2021-03-28 19:17:08 +03:00
|
|
|
},
|
|
|
|
}
|
2021-08-16 18:57:19 +03:00
|
|
|
)
|
|
|
|
|
2023-02-21 13:18:03 +03:00
|
|
|
type HealthServiceServer interface {
|
2021-03-28 19:17:08 +03:00
|
|
|
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
|
|
|
|
}
|