feat: Enable indexing with tape as single source of truth after deletions
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
package pax
|
||||
|
||||
import "errors"
|
||||
|
||||
const (
|
||||
STFSRecordVersion = "STFS.Version"
|
||||
STFSRecordVersion1 = "1"
|
||||
@@ -8,3 +10,8 @@ const (
|
||||
STFSRecordActionCreate = "CREATE"
|
||||
STFSRecordActionDelete = "DELETE"
|
||||
)
|
||||
|
||||
var (
|
||||
ErrUnsupportedVersion = errors.New("unsupported STFS version")
|
||||
ErrUnsupportedAction = errors.New("unsupported STFS action")
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user