aboutsummaryrefslogtreecommitdiff
path: root/ref/store/files/batch.go
diff options
context:
space:
mode:
Diffstat (limited to 'ref/store/files/batch.go')
-rw-r--r--ref/store/files/batch.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/ref/store/files/batch.go b/ref/store/files/batch.go
new file mode 100644
index 00000000..8f514422
--- /dev/null
+++ b/ref/store/files/batch.go
@@ -0,0 +1,10 @@
+package files
+
+import "codeberg.org/lindenii/furgit/ref/store"
+
+type Batch struct {
+ store *Store
+ ops []queuedUpdate
+}
+
+var _ refstore.Batch = (*Batch)(nil)