diff options
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -0,0 +1,13 @@ +package main + +import ( + "fmt" + "fpdns_client/methods" +) + +func main() { + _, err := methods.BehaviorTest("127.0.0.1", "127.0.0.1", "8888", "echodns.xyz") + if err != nil { + fmt.Println(err) + } +} |
