mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-11 00:44:20 -05:00
8 lines
138 B
Go
8 lines
138 B
Go
|
package ssh
|
||
|
|
||
|
// SSHKey describes a public ssh key.
|
||
|
type SSHKey struct {
|
||
|
Username string `json:"user"`
|
||
|
KeyValue string `json:"pubkey"`
|
||
|
}
|