shithub: furgit

ref: e7ce17381f525328073577d60583447fc9412c18
dir: /reachability/domain.go/

View raw version
package reachability

// Domain specifies which graph edges are traversed.
type Domain uint8

const (
	// DomainCommits traverses commit-parent edges and annotated-tag target edges.
	DomainCommits Domain = iota
	// DomainObjects traverses full commit/tree/blob objects.
	DomainObjects
)