Skip to content

Commit 91b9b7d

Browse files
committed
Add verification representation
1 parent 1f1117c commit 91b9b7d

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

verification.go

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// Copyright 2015 The Gogs Authors. All rights reserved.
2+
// Use of this source code is governed by a MIT-style
3+
// license that can be found in the LICENSE file.
4+
5+
package git
6+
7+
// Verification represents the PGP payload information of a signed commit.
8+
type Verification struct {
9+
Verified bool
10+
Reason string
11+
Signature string
12+
Payload string
13+
}
14+

0 commit comments

Comments
 (0)