added note about generating config

it's in generate.go, if it isn't obv enough :)
This commit is contained in:
Wyatt J. Miller 2019-08-14 18:41:15 -04:00
parent d0869861ad
commit 996aef3c1e
2 changed files with 4 additions and 10 deletions

View File

@ -1 +1,5 @@
package main
// this file is for generating the config if it doesn't exist
// this is not really a priority right now so it sitting in the backburner as you read this
// signed Wyatt J. Miller, the awesome guy who doesn't generate configs *thumbs up*

10
main.go
View File

@ -2,8 +2,6 @@ package main
import (
"fmt"
"golang.org/x/crypto/ssh"
)
func main() {
@ -17,12 +15,4 @@ func main() {
//fmt.Println(sshConn.Hosts)
clientConns := sshConn.dialConnection(sshConfig)
fmt.Println(clientConns)
sshSuccess, err := ssh.Dial("tcp", "crash.local:22", sshConfig)
if err != nil {
panic(err)
}
fmt.Println(sshSuccess)
}