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