forked from TrueCloudLab/frostfs-node
15 lines
254 B
Go
15 lines
254 B
Go
|
package blobtree
|
||
|
|
||
|
import "io/fs"
|
||
|
|
||
|
var directoryLength uint64 = 1
|
||
|
|
||
|
type cfg struct {
|
||
|
rootPath string
|
||
|
depth uint64
|
||
|
targetFileSizeBytes uint64
|
||
|
permissions fs.FileMode
|
||
|
readOnly bool
|
||
|
initWorkersCount int
|
||
|
}
|