aboutsummaryrefslogtreecommitdiffstats
path: root/identity/key.go
blob: c498ec09fdb3df456c33919767bae52ade971b1f (plain) (blame)
1
2
3
4
5
6
7
package identity

type Key struct {
	// The GPG fingerprint of the key
	Fingerprint string `json:"fingerprint"`
	PubKey      string `json:"pub_key"`
}