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.
helm/_proto/get.proto

21 lines
268 B

syntax = "proto3";
package hapi;
import "aaa.proto";
message GetRequest {
string name = 1;
}
message GetResponseError {
oneof response {
Error err = 1;
GetResponse get_response = 2;
}
}
message GetResponse {
Chart chart = 1;
Values values = 2;
}