lotus/extern/sector-storage/storiface/storage.go

16 lines
223 B
Go
Raw Normal View History

2020-09-06 16:47:16 +00:00
package storiface
2020-09-06 16:54:00 +00:00
type PathType string
const (
PathStorage PathType = "storage"
PathSealing PathType = "sealing"
)
type AcquireMode string
const (
AcquireMove AcquireMode = "move"
AcquireCopy AcquireMode = "copy"
)