mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-10-31 20:41:22 +00:00
11 lines
179 B
Protocol Buffer
11 lines
179 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package resf.orgmon;
|
|
|
|
option go_package = "peridot.resf.org/common;commonpb";
|
|
|
|
message HealthCheckRequest {}
|
|
message HealthCheckResponse {
|
|
bool alive = 1;
|
|
}
|