aboutsummaryrefslogtreecommitdiff
path: root/refstore/files/transaction_operation.go
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-03-23 03:25:44 +0000
committerGravatar Runxi Yu2026-03-23 03:27:52 +0000
commit4a796e64ac576d6a3e3f2fe6174c4aa476ea0c5c (patch)
tree44d72a20076ceab0981d0b553693d26ca36cc0be /refstore/files/transaction_operation.go
parentreceivepack: Lifecycle/ownership docs (diff)
signatureNo signature
refstore: Improve interfaces, errors, and make batch work v0.1.92
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
-}