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