forked from cerc-io/ipld-eth-server
9 lines
198 B
Go
9 lines
198 B
Go
|
package isdomain
|
||
|
|
||
|
// ExtendedTLDs is a set of additional "TLDs", allowing decentralized name
|
||
|
// systems, like TOR and Namecoin.
|
||
|
var ExtendedTLDs = map[string]bool{
|
||
|
"BIT": true,
|
||
|
"ONION": true,
|
||
|
}
|