feat: Enable indexing with tape as single source of truth after deletions

This commit is contained in:
Felicitas Pojtinger
2021-11-21 19:58:02 +01:00
parent a33c4cb588
commit d4c4eb41ef
5 changed files with 97 additions and 55 deletions
+7
View File
@@ -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")
)