An open API service indexing awesome lists of open source software.

https://github.com/picatz/tlds

🌍 Top-level domains made easy.
https://github.com/picatz/tlds

domains golang library tld

Last synced: about 1 year ago
JSON representation

🌍 Top-level domains made easy.

Awesome Lists containing this project

README

          

# tlds
> Top-level domains made easy.

A simple [top-level domain](https://en.wikipedia.org/wiki/Top-level_domain) library for gophers.

## Installation

```
go get github.com/picatz/tlds
```

## Example Usage

```go
package main

import (
"fmt"
"github.com/picatz/tlds"
)

func main() {
for domain := range tlds.StreamAllDomains() {
fmt.Println(domain)
}
}
```