c496fefe4d
full diff: https://github.com/moby/buildkit/compare/ae7ff7174f73bcb4df89b97e1623b3fb0bfb0a0c...df35e9818d1f9066e616e03f4b8d727c97562e5b Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
17 lines
266 B
Protocol Buffer
17 lines
266 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package stack;
|
|
|
|
message Stack {
|
|
repeated Frame frames = 1;
|
|
repeated string cmdline = 2;
|
|
int32 pid = 3;
|
|
string version = 4;
|
|
string revision = 5;
|
|
}
|
|
|
|
message Frame {
|
|
string Name = 1;
|
|
string File = 2;
|
|
int32 Line = 3;
|
|
} |