wasi-module-sdk-go/api/rpc/v1/wasi.proto

17 lines
No EOL
313 B
Protocol Buffer

syntax = "proto3";
package buildr.rpc.v1;
message ProcessStartRequest {
string command = 1;
repeated string args = 2;
string working_directory = 3;
map<string, string> environment = 4;
bytes stdin = 5;
}
message ProcessStartResponse {
uint64 exit_code = 1;
string error = 2;
bytes stderr = 3;
}