mirror of
https://github.com/containers/podman.git
synced 2025-11-30 18:18:18 +08:00
As the title says. This is the last dance step in preparation for Podman v4.8. [NO NEW TESTS NEEDED] Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
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;
|
|
} |