diff options
| author | 2026-03-03 22:49:24 +0800 | |
|---|---|---|
| committer | 2026-03-03 22:52:47 +0800 | |
| commit | 6378da9dcf8d991a00ee410bb5408231861d90c0 (patch) | |
| tree | 5427fbc11b79a683598c02cdcdc81048423c92f2 /reachability/domain.go | |
| parent | config: Fix lints (diff) | |
| signature | No signature | |
reachability: Refactor v0.1.41
Diffstat (limited to 'reachability/domain.go')
| -rw-r--r-- | reachability/domain.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/reachability/domain.go b/reachability/domain.go new file mode 100644 index 00000000..9fcf721e --- /dev/null +++ b/reachability/domain.go @@ -0,0 +1,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 +) |
