23 lines
554 B
Go
23 lines
554 B
Go
// Code generated by protoc-gen-go-micro. DO NOT EDIT.
|
|
// versions:
|
|
// - protoc-gen-go-micro v4.0.2
|
|
// - protoc v4.23.4
|
|
// source: health/health.proto
|
|
|
|
package health
|
|
|
|
import (
|
|
context "context"
|
|
codec "go.unistack.org/micro-proto/v4/codec"
|
|
)
|
|
|
|
var (
|
|
HealthServiceName = "HealthService"
|
|
)
|
|
|
|
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
|
|
}
|