available icon indicating copy to clipboard operation
available copied to clipboard

Domain availability checking for Golang

Results 2 available issues
Sort by recently updated
recently updated
newest added

The `Domain` function must return an error in case the `publicsuffix` produces one. This way the respective retries can be carried out.

Hi, when i run the following code: ``` package main import ( "fmt" "github.com/haccer/available" ) func main() { fmt.Println(available.Domain("twitch.tv")) } ``` It return true, which is obviously wrong. How can...