Skip to content

lawzava/go-tld

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GolangCI Version Go Report Card Coverage Status Go Reference

go-tld

Minimalistic library for keeping up to date with TLD checks.

Installation

go get github.com/lawzava/go-tld

Usage

package main

import "github.com/lawzava/go-tld"

func main() {
	tld.IsValid("com") // true
	tld.IsValid("xir") // false
}