mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-22 19:57:44 +08:00
15 lines
209 B
Protocol Buffer
15 lines
209 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package errdefs;
|
|
|
|
import "github.com/moby/buildkit/solver/pb/ops.proto";
|
|
|
|
message Vertex {
|
|
string digest = 1;
|
|
}
|
|
|
|
message Source {
|
|
pb.SourceInfo info = 1;
|
|
repeated pb.Range ranges = 2;
|
|
}
|