mirror of
https://github.com/nxtrace/NTrace-core.git
synced 2025-08-12 06:26:39 +00:00
14 lines
196 B
Go
14 lines
196 B
Go
package util
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestDNS(t *testing.T) {
|
|
resolver := DNSSB()
|
|
ips, _ := resolver.LookupHost(context.Background(), "www.google.com")
|
|
fmt.Println(ips)
|
|
}
|