diff options
| author | MDK <[email protected]> | 2024-02-21 15:28:24 +0800 |
|---|---|---|
| committer | MDK <[email protected]> | 2024-02-21 15:28:24 +0800 |
| commit | 66580aad7489cb052d74e91551c83c90eb628763 (patch) | |
| tree | 14077a196d4aaa3c718a1fdd2dddcb629d73f704 /main.go | |
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) + } +} |
