Update udphex.go

This commit is contained in:
Fijxu 2021-04-29 22:06:36 -04:00 committed by GitHub
parent c74270c0fb
commit d01b390baf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -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)