blob: d8037bbb791b6e33a03cedeffec024309adcb80c (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
package files
import refstore "codeberg.org/lindenii/furgit/ref/store"
// Batch stages files-store updates for one non-atomic apply.
type Batch struct {
store *Store
ops []queuedUpdate
}
var _ refstore.Batch = (*Batch)(nil)
|