blob: 2ebf9369d3b15ba12ae4834010b50a3ac811d680 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package signedtag
import objectid "codeberg.org/lindenii/furgit/object/id"
// Tag represents the payload and signatures parsed from a raw tag object.
type Tag struct {
body []byte
payload []byteRange
signatures map[objectid.Algorithm][]byteRange
}
type byteRange struct {
start int
end int
}
|