mirror of
https://github.com/mudler/luet.git
synced 2025-08-26 02:49:02 +00:00
Optionally add back privileged extraction which can be enabled with LUET_PRIVILEGED_EXTRACT=true Signed-off-by: Ettore Di Giacinto <mudler@sabayon.org>
15 lines
245 B
Protocol Buffer
15 lines
245 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package moby.upload.v1;
|
|
|
|
option go_package = "upload";
|
|
|
|
service Upload {
|
|
rpc Pull(stream BytesMessage) returns (stream BytesMessage);
|
|
}
|
|
|
|
// BytesMessage contains a chunk of byte data
|
|
message BytesMessage{
|
|
bytes data = 1;
|
|
}
|