mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-04-08 17:38:05 -04:00
* walk and log chi routes, ocs cleanup Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de> * make linter happy Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de> Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
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"`
|
|
}
|