aboutsummaryrefslogtreecommitdiffstats
path: root/c_parse.go
diff options
context:
space:
mode:
authorJoe <rbo@gmx.us>2023-12-15 20:20:20 +0100
committerJoe <rbo@gmx.us>2023-12-15 20:20:20 +0100
commit8945d49e7ae4b96b2919fd074c03623a7c65b8f8 (patch)
treea538134f49219d34aee0b762e8d7b40a42598e20 /c_parse.go
parentnew stuff (diff)
downloadhardflip-8945d49e7ae4b96b2919fd074c03623a7c65b8f8.tar.gz
hardflip-8945d49e7ae4b96b2919fd074c03623a7c65b8f8.tar.bz2
hardflip-8945d49e7ae4b96b2919fd074c03623a7c65b8f8.tar.xz
hardflip-8945d49e7ae4b96b2919fd074c03623a7c65b8f8.tar.zst
hardflip-8945d49e7ae4b96b2919fd074c03623a7c65b8f8.zip
good parsing
Diffstat (limited to '')
-rw-r--r--c_parse.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/c_parse.go b/c_parse.go
index eef9ee1..dcaa6a8 100644
--- a/c_parse.go
+++ b/c_parse.go
@@ -48,7 +48,6 @@
package main
import (
- "fmt"
"io/ioutil"
"gopkg.in/yaml.v3"
)
@@ -69,6 +68,5 @@ func c_read_yaml_file(file string) *HostNode {
if host.Port == 0 {
host.Port = 22
}
- fmt.Println(host)
return &host
}