This commit is contained in:
shoopea
2020-06-14 16:27:57 +02:00
commit 2292bbc976
3 changed files with 126 additions and 0 deletions

12
main.go Normal file
View File

@@ -0,0 +1,12 @@
package main
import (
"net"
)
func main() {
conn, err := net.Dial("tcp", "poop.siteop.biz:3977")
failError(err, "net.Dial")
logInfoDebug("Connected to poop.siteop.biz:3977")
}