mirror of https://github.com/helm/helm
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.
17 lines
215 B
17 lines
215 B
9 years ago
|
syntax = "proto3";
|
||
|
|
||
|
package hapi.services.probe;
|
||
|
|
||
|
option go_package = "services";
|
||
|
|
||
|
service ProbeService {
|
||
|
rpc Ready(ReadyRequest) returns (ReadyResponse) {
|
||
|
}
|
||
|
}
|
||
|
|
||
|
message ReadyRequest {
|
||
|
}
|
||
|
|
||
|
message ReadyResponse {
|
||
|
}
|