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

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

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