summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorMDK <[email protected]>2024-02-21 15:28:24 +0800
committerMDK <[email protected]>2024-02-21 15:28:24 +0800
commit66580aad7489cb052d74e91551c83c90eb628763 (patch)
tree14077a196d4aaa3c718a1fdd2dddcb629d73f704 /main.go
initial commitHEADmaster
Diffstat (limited to 'main.go')
-rw-r--r--main.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..f951875
--- /dev/null
+++ b/main.go
@@ -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)
+ }
+}