1
2
3
4
5
6
7
8
9
10
11
12
13
14 | type SSHHostKeys struct {
RSA string
DSA string
}
This:
func (st *State) GetSSHHostKeys(entity GlobalEntity) (SSHHostKeys, error)
func (st *State) SetSSHHostKeys(entity GlobalEntity, keys SSHHostKeys) error
or this:
func (m *Machine) GetSSHHostKeys() (SSHHostKeys, error)
func (m *Machine) SetSSHHostKeys(keys SSHHostKeys) error
|