Mark realSSHDialer as implementing sshDialer

This commit is contained in:
Justin Santa Barbara 2015-06-19 16:46:56 -04:00
parent efdd03a6a9
commit c5f9085398

View File

@ -150,6 +150,8 @@ type sshDialer interface {
// Real implementation of sshDialer
type realSSHDialer struct{}
var _ sshDialer = &realSSHDialer{}
func (d *realSSHDialer) Dial(network, addr string, config *ssh.ClientConfig) (*ssh.Client, error) {
return ssh.Dial(network, addr, config)
}