diff --git a/udphex.go b/udphex.go index 67ca1eb..d8f438e 100644 --- a/udphex.go +++ b/udphex.go @@ -1,13 +1,12 @@ -package udphex +package main import ( "fmt" "net" "os" - "time" ) -func boom() { +func main() { target := os.Args[1] port := os.Args[2] conn, err := net.Dial("udp", target+":"+port)