fix the indent

This commit is contained in:
yangzhouhan
2015-07-23 11:01:18 -07:00
parent 0252e09f21
commit ee67f58505

View File

@ -5,15 +5,17 @@ package grpc.health.v1alpha;
message HealthCheckRequest {
string host = 1;
string service = 2;
}
}
message HealthCheckResponse {
enum ServingStatus {
UNKNOWN = 0;
SERVING = 1;
NOT_SERVING = 2;
}
ServingStatus status = 1;
}
ServingStatus status = 1;
}
service HealthCheck{
rpc Check( HealthCheckRequest) returns ( HealthCheckResponse);
}
rpc Check(HealthCheckRequest) returns (HealthCheckResponse);
}