You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kratos/health/health.proto

12 lines
189 B

syntax = "proto3";
package health;
option go_package = "github.com/go-kratos/kratos/v2/health;health";
enum Status {
UNKNOWN = 0;
SERVING = 1;
NOT_SERVING = 2;
SERVICE_UNKNOWN = 3;
}