From 996aef3c1edd2d1c79e5448a74ff6d52857e77e3 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Wed, 14 Aug 2019 18:41:15 -0400 Subject: [PATCH] added note about generating config it's in generate.go, if it isn't obv enough :) --- generate.go | 4 ++++ main.go | 10 ---------- 2 files changed, 4 insertions(+), 10 deletions(-) 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) }