Files
micro-server-http/handler/health/health_micro.pb.go
Evstigneev Denis a9bbe17047
Some checks failed
lint / lint (pull_request) Failing after 1m43s
test / test (pull_request) Successful in 3m14s
prepare v4
2025-02-27 22:45:32 +03:00

24 lines
635 B
Go

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