summaryrefslogtreecommitdiffstats
path: root/modules/git/object_signature.go
blob: 35fa671a9e83701753b6bf3a9ba84cb5a432ee4a (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2015 The Gogs Authors. All rights reserved.
// Copyright 2019 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package git

// ObjectSignature represents a git object (commit, tag) signature part.
type ObjectSignature struct {
	Signature string
	Payload   string // TODO check if can be reconstruct from the rest of commit information to not have duplicate data
}