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.
21 lines
268 B
21 lines
268 B
9 years ago
|
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;
|
||
|
}
|