blob: 06459b2c7a93e325ed1a7db78ba7e9cf4e8e9389 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package files
import "codeberg.org/lindenii/furgit/refstore"
// BeginBatch creates one new files batch.
//
//nolint:ireturn
func (store *Store) BeginBatch() (refstore.Batch, error) {
return &Batch{
store: store,
ops: make([]queuedUpdate, 0, 8),
}, nil
}
|