16 lines
223 B
Go
16 lines
223 B
Go
package storiface
|
|
|
|
type PathType string
|
|
|
|
const (
|
|
PathStorage PathType = "storage"
|
|
PathSealing PathType = "sealing"
|
|
)
|
|
|
|
type AcquireMode string
|
|
|
|
const (
|
|
AcquireMove AcquireMode = "move"
|
|
AcquireCopy AcquireMode = "copy"
|
|
)
|