repositorypackage
0.0.0-20140814060910-2d799f6e350b
Repository: https://github.com/liamcurry/domains.git
Documentation: pkg.go.dev
# Packages
No description provided by the author
# README
domains
domains
is a minimal go library for checking domain name availablity. The API
isn't finalized yet and will probably change at some point.
Pull requests welcome!
INSTALLATION
go get github.com/liamcurry/domains
USAGE
package main
import "github.com/liamcurry/domains"
func main() {
c := domains.NewChecker()
println(c.IsTaken("hello.com"))
}
CLI
domains <domain>