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