aboutsummaryrefslogtreecommitdiff
path: root/ref/store/files/update_direct_ref.go
blob: 79136da6e732f5f60d560f5de579d9dcefad9c55 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package files

import objectid "lindenii.org/go/furgit/object/id"

type directRefKind uint8

const (
	directMissing directRefKind = iota
	directDetached
	directSymbolic
)

type directRefState struct {
	kind     directRefKind
	name     string
	id       objectid.ObjectID
	target   string
	isLoose  bool
	isPacked bool
}