NewSSHController creates a new SSHController for the given target IP and configuration.
(targetIP string, configuration *config.MainConfig)
| 83 | |
| 84 | // NewSSHController creates a new SSHController for the given target IP and configuration. |
| 85 | func NewSSHController(targetIP string, configuration *config.MainConfig) *SSHController { |
| 86 | return &SSHController{ |
| 87 | targetIP: targetIP, |
| 88 | configuration: configuration, |
| 89 | } |
| 90 | } |
no outgoing calls