This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
modikai-fpdns-client/main.go

14 lines
193 B
Go
Raw Normal View History

2024-02-21 15:28:24 +08:00
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)
}
}