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