blob: 60c3a67a23f4d2378b72525d5fc31f871f4e64d0 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Package tag provides representations, parsers, and serializers for tag objects.
package tag
import (
objectid "codeberg.org/lindenii/furgit/object/id"
objectsignature "codeberg.org/lindenii/furgit/object/signature"
objecttype "codeberg.org/lindenii/furgit/object/type"
)
// Tag represents a fully materialized Git annotated tag object.
//
// Labels: MT-Unsafe.
type Tag struct {
Target objectid.ObjectID
TargetType objecttype.Type
Name []byte
Tagger *objectsignature.Signature
Message []byte
}
|