diff --git a/generate.go b/generate.go index 06ab7d0..fb8083e 100644 --- a/generate.go +++ b/generate.go @@ -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* diff --git a/main.go b/main.go index 1afea17..37077aa 100644 --- a/main.go +++ b/main.go @@ -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) }