aboutsummaryrefslogtreecommitdiff
path: root/refstore/files/transaction_operation.go
diff options
context:
space:
mode:
Diffstat (limited to 'refstore/files/transaction_operation.go')
-rw-r--r--refstore/files/transaction_operation.go23
1 files changed, 0 insertions, 23 deletions
diff --git a/refstore/files/transaction_operation.go b/refstore/files/transaction_operation.go
deleted file mode 100644
index bb24c5a2..00000000
--- a/refstore/files/transaction_operation.go
+++ /dev/null
@@ -1,23 +0,0 @@
-package files
-
-import "codeberg.org/lindenii/furgit/objectid"
-
-type txOp struct {
- name string
- kind txKind
- newID objectid.ObjectID
- oldID objectid.ObjectID
- newTarget string
- oldTarget string
-}
-
-type preparedTxOp struct {
- op txOp
- target resolvedWriteTarget
-}
-
-type resolvedWriteTarget struct {
- name string
- loc refPath
- ref directRef
-}