shithub: furgit

ref: 21e2f19ae2a3baa744b6bbed997f757f0af7e01f
dir: /refstore/files/transaction_direct_ref.go/

View raw version
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
}