shithub: furgit

ref: 5d85a8de7bdb9e3223d8bbe6661dfb5c2bdd16c7
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
)