key.go

1package identity
2
3type Key struct {
4	// The GPG fingerprint of the key
5	Fingerprint string `json:"fingerprint"`
6	PubKey      string `json:"pub_key"`
7}