whoissdk/parse_test.go

12 lines
129 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()
2024-08-15 15:10:18 +08:00
fmt.Println(c.Whois("b612.in"))
2024-08-15 08:38:28 +08:00
}