whoissdk/parse_test.go
2024-08-15 08:38:28 +08:00

12 lines
130 B
Go

package whois
import (
"fmt"
"testing"
)
func TestWhois(t *testing.T) {
c := NewClient()
fmt.Println(c.Whois("b612.com"))
}