mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 18:23:08 +03:00
8 lines
151 B
Go
8 lines
151 B
Go
package identity
|
|
|
|
type Key struct {
|
|
// The GPG fingerprint of the key
|
|
Fingerprint string `json:"fingerprint"`
|
|
PubKey string `json:"pub_key"`
|
|
}
|