aboutsummaryrefslogtreecommitdiff
path: root/ref/symbolic.go
blob: af9f9e842826b4aa5dd30f06852783d082beef90 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package ref

// Symbolic points to another reference name.
type Symbolic struct {
	RefName string
	Target  string
}

// Name returns the fully-qualified reference name.
func (ref Symbolic) Name() string {
	return ref.RefName
}

func (Symbolic) isRef() {}