whoissdk/parse_test.go

12 lines
130 B
Go
Raw Normal View History

2024-08-15 08:38:28 +08:00
package whois
import (
"fmt"
"testing"
)
func TestWhois(t *testing.T) {
c := NewClient()
fmt.Println(c.Whois("b612.com"))
}