mirror of
https://github.com/moby/buildkit.git
synced 2026-08-07 08:10:44 +00:00
Remove gogoproto in favor of the standard protobuf compiler. This removes any nonstandard extensions that were part of gogoproto such as the custom types. Signed-off-by: Jonathan A. Sternberg <jonathan.sternberg@docker.com>
20 lines
334 B
Protocol Buffer
20 lines
334 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package moby.buildkit.secrets.v1;
|
|
|
|
option go_package = "github.com/moby/buildkit/session/secrets";
|
|
|
|
service Secrets{
|
|
rpc GetSecret(GetSecretRequest) returns (GetSecretResponse);
|
|
}
|
|
|
|
|
|
message GetSecretRequest {
|
|
string ID = 1;
|
|
map<string, string> annotations = 2;
|
|
}
|
|
|
|
message GetSecretResponse {
|
|
bytes data = 1;
|
|
}
|