aboutsummaryrefslogtreecommitdiff
path: root/refstore/files/transaction_kind.go
diff options
context:
space:
mode:
Diffstat (limited to 'refstore/files/transaction_kind.go')
-rw-r--r--refstore/files/transaction_kind.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/refstore/files/transaction_kind.go b/refstore/files/transaction_kind.go
new file mode 100644
index 00000000..d4f84031
--- /dev/null
+++ b/refstore/files/transaction_kind.go
@@ -0,0 +1,14 @@
+package files
+
+type txKind uint8
+
+const (
+ txCreate txKind = iota
+ txUpdate
+ txDelete
+ txVerify
+ txCreateSymbolic
+ txUpdateSymbolic
+ txDeleteSymbolic
+ txVerifySymbolic
+)