blob: 9fcf721e7bcf0f6c4291ad9e0bd4109c90fa0a60 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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
)
|