aboutsummaryrefslogtreecommitdiff
path: root/refstore/files/transaction_direct_ref.go
blob: 970e7b6a2fa0d288f643458f72510a49bb2b2ef3 (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 "codeberg.org/lindenii/furgit/objectid"

type directKind uint8

const (
	directMissing directKind = iota
	directDetached
	directSymbolic
)

type directRef struct {
	kind     directKind
	name     string
	id       objectid.ObjectID
	target   string
	isLoose  bool
	isPacked bool
}