mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-05-25 17:31:04 -04:00
7 lines
138 B
Go
7 lines
138 B
Go
package ssh
|
|
|
|
// SSHKey describes a public ssh key.
|
|
type SSHKey struct {
|
|
Username string `yaml:"user"`
|
|
KeyValue string `yaml:"pubkey"`
|
|
}
|