1166fdfbab
Resolves https://github.com/storj/storj/issues/5798 Change-Id: I6fe2c57b3a247b085026feb8bee60c2d002db71b
10 lines
280 B
Go
10 lines
280 B
Go
// Copyright (C) 2023 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package piecetracker
|
|
|
|
// Config is the configuration for the piecetracker.
|
|
type Config struct {
|
|
UseRangedLoop bool `help:"whether to enable piece tracker observer with ranged loop" default:"true"`
|
|
}
|