8 lines
204 B
Go
8 lines
204 B
Go
package data
|
|
|
|
// SigningKey holds the Payload for a GetSigningKey response
|
|
type SigningKey struct {
|
|
User string `json:"user" xml:"user"`
|
|
SigningKey string `json:"signing-key" xml:"signing-key"`
|
|
}
|