storj/pkg/pb/datarepair.proto

13 lines
268 B
Protocol Buffer
Raw Normal View History

// Copyright (C) 2018 Storj Labs, Inc.
// See LICENSE for copying information.
syntax = "proto3";
package pb;
// InjuredSegment is the queue item used for the data repair queue
message InjuredSegment {
string path = 1;
repeated int32 lost_pieces = 2;
}