mirror of
https://github.com/rocky-linux/peridot.git
synced 2025-01-05 00:30:55 +00:00
10 lines
179 B
Protocol Buffer
10 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;
|
|
}
|