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