aboutsummaryrefslogtreecommitdiff
path: root/refstore/files/packed_refs.go
blob: f3e91d83ad8cc4e531ab38d99a9089fda53a7ccf (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package files

import (
	"codeberg.org/lindenii/furgit/ref"
)

type packedRefs struct {
	byName  map[string]ref.Detached
	ordered []ref.Detached
}